[1m[36m (1.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Migrating to CreateUsers (20150119093713)
[1m[35m (0.0ms)[0m begin transaction
[1m[36m (0.4ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
[1m[35m (0.1ms)[0m CREATE INDEX "index_users_on_nickname" ON "users" ("nickname")
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150119093713"]]
[1m[35m (0.7ms)[0m commit transaction
Migrating to AddDeviseToUsers (20150119093853)
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35m (0.4ms)[0m ALTER TABLE "users" ADD "email" varchar(255) DEFAULT '' NOT NULL
[1m[36m (0.1ms)[0m [1mALTER TABLE "users" ADD "encrypted_password" varchar(255) DEFAULT '' NOT NULL[0m
[1m[35m (0.1ms)[0m ALTER TABLE "users" ADD "reset_password_token" varchar(255)
[1m[36m (0.1ms)[0m [1mALTER TABLE "users" ADD "reset_password_sent_at" datetime[0m
[1m[35m (0.1ms)[0m ALTER TABLE "users" ADD "remember_created_at" datetime
[1m[36m (0.2ms)[0m [1mALTER TABLE "users" ADD "sign_in_count" integer DEFAULT 0 NOT NULL[0m
[1m[35m (0.1ms)[0m ALTER TABLE "users" ADD "current_sign_in_at" datetime
[1m[36m (0.1ms)[0m [1mALTER TABLE "users" ADD "last_sign_in_at" datetime[0m
[1m[35m (0.1ms)[0m ALTER TABLE "users" ADD "current_sign_in_ip" varchar(255)
[1m[36m (0.1ms)[0m [1mALTER TABLE "users" ADD "last_sign_in_ip" varchar(255)[0m
[1m[35m (0.3ms)[0m CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")[0m
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150119093853"]]
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
Migrating to CreateGames (20150119135723)
[1m[35m (0.1ms)[0m begin transaction
[1m[36m (0.3ms)[0m [1mCREATE TABLE "games" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "user_id" integer, "code_id" integer, "created_at" datetime, "updated_at" datetime) [0m
[1m[35m (0.1ms)[0m CREATE INDEX "index_games_on_user_id" ON "games" ("user_id")
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_games_on_code_id" ON "games" ("code_id")[0m
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150119135723"]]
[1m[36m (0.5ms)[0m [1mcommit transaction[0m
Migrating to AddSlugToGame (20150119140616)
[1m[35m (0.1ms)[0m begin transaction
[1m[36m (0.4ms)[0m [1mALTER TABLE "games" ADD "slug" varchar(255)[0m
[1m[35m (0.3ms)[0m CREATE UNIQUE INDEX "index_games_on_slug" ON "games" ("slug")
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150119140616"]]
[1m[35m (0.6ms)[0m commit transaction
Migrating to DeleteCodeIdFromGames (20150119140802)
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35m (0.4ms)[0m CREATE TEMPORARY TABLE "agames" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "user_id" integer, "code_id" integer, "created_at" datetime, "updated_at" datetime, "slug" varchar(255))
[1m[36m (0.2ms)[0m [1mCREATE UNIQUE INDEX "tindex_agames_on_slug" ON "agames" ("slug")[0m
[1m[35m (0.1ms)[0m CREATE INDEX "tindex_agames_on_code_id" ON "agames" ("code_id")
[1m[36m (0.1ms)[0m [1mCREATE INDEX "tindex_agames_on_user_id" ON "agames" ("user_id")[0m
[1m[35m (0.0ms)[0m SELECT * FROM "games"
[1m[36m (0.2ms)[0m [1mDROP TABLE "games"[0m
[1m[35m (0.1ms)[0m CREATE TABLE "games" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "user_id" integer, "created_at" datetime, "updated_at" datetime, "slug" varchar(255))
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_games_on_user_id" ON "games" ("user_id")[0m
[1m[35m (0.3ms)[0m CREATE UNIQUE INDEX "index_games_on_slug" ON "games" ("slug")
[1m[36m (0.0ms)[0m [1mSELECT * FROM "agames"[0m
[1m[35m (0.1ms)[0m DROP TABLE "agames"
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150119140802"]]
[1m[35m (0.9ms)[0m commit transaction
Migrating to RemoveUserIdFromGames (20150119140948)
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35m (0.2ms)[0m CREATE TEMPORARY TABLE "agames" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "user_id" integer, "created_at" datetime, "updated_at" datetime, "slug" varchar(255))
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "tindex_agames_on_slug" ON "agames" ("slug")[0m
[1m[35m (0.1ms)[0m CREATE INDEX "tindex_agames_on_user_id" ON "agames" ("user_id")
[1m[36m (0.0ms)[0m [1mSELECT * FROM "games"[0m
[1m[35m (0.2ms)[0m DROP TABLE "games"
[1m[36m (0.1ms)[0m [1mCREATE TABLE "games" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime, "slug" varchar(255)) [0m
[1m[35m (0.3ms)[0m CREATE UNIQUE INDEX "index_games_on_slug" ON "games" ("slug")
[1m[36m (0.0ms)[0m [1mSELECT * FROM "agames"[0m
[1m[35m (0.1ms)[0m DROP TABLE "agames"
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150119140948"]]
[1m[35m (0.9ms)[0m commit transaction
Migrating to AddGameCodesToGames (20150119141032)
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35m (0.5ms)[0m ALTER TABLE "games" ADD "game_codes_id" integer
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_games_on_game_codes_id" ON "games" ("game_codes_id")[0m
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150119141032"]]
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
Migrating to AddAdminToUser (20150119142005)
[1m[35m (0.1ms)[0m begin transaction
[1m[36m (0.4ms)[0m [1mALTER TABLE "users" ADD "admin" boolean[0m
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150119142005"]]
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
Migrating to DefaultAdminToFalseForUsers (20150119142502)
[1m[35m (0.1ms)[0m begin transaction
[1m[36m (0.2ms)[0m [1mCREATE TEMPORARY TABLE "ausers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255), "created_at" datetime, "updated_at" datetime, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "admin" boolean) [0m
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "tindex_ausers_on_reset_password_token" ON "ausers" ("reset_password_token")
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "tindex_ausers_on_email" ON "ausers" ("email")[0m
[1m[35m (0.1ms)[0m CREATE INDEX "tindex_ausers_on_nickname" ON "ausers" ("nickname")
[1m[36m (0.0ms)[0m [1mSELECT * FROM "users"[0m
[1m[35m (0.3ms)[0m DROP TABLE "users"
[1m[36m (0.1ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255), "created_at" datetime, "updated_at" datetime, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "admin" varchar(255) DEFAULT 'f') [0m
[1m[35m (0.1ms)[0m CREATE INDEX "index_users_on_nickname" ON "users" ("nickname")
[1m[36m (0.3ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")[0m
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
[1m[36m (0.1ms)[0m [1mSELECT * FROM "ausers"[0m
[1m[35m (0.1ms)[0m DROP TABLE "ausers"
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150119142502"]]
[1m[35m (0.8ms)[0m commit transaction
Migrating to AddCreatorToGames (20150120091443)
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35m (0.3ms)[0m ALTER TABLE "games" ADD "creator" varchar(255)
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150120091443"]]
[1m[35m (0.5ms)[0m commit transaction
Migrating to CreateGameCodes (20150120103943)
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35m (0.3ms)[0m CREATE TABLE "game_codes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "code" varchar(255), "user_id" integer, "created_at" datetime, "updated_at" datetime)
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_game_codes_on_user_id" ON "game_codes" ("user_id")[0m
[1m[35m (0.3ms)[0m CREATE UNIQUE INDEX "index_game_codes_on_code" ON "game_codes" ("code")
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150120103943"]]
[1m[35m (0.7ms)[0m commit transaction
Migrating to AddCoverUrlToGame (20150120105748)
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35m (0.3ms)[0m ALTER TABLE "games" ADD "cover_url" varchar(255)
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150120105748"]]
[1m[35m (0.6ms)[0m commit transaction
Migrating to AddCompanyUrlToGame (20150120124115)
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35m (0.4ms)[0m ALTER TABLE "games" ADD "company_url" varchar(255)
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150120124115"]]
[1m[35m (1.5ms)[0m commit transaction
Migrating to AddGameIdToGameCode (20150120151846)
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35m (0.4ms)[0m ALTER TABLE "game_codes" ADD "game_id" integer
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_game_codes_on_game_id" ON "game_codes" ("game_id")[0m
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150120151846"]]
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
Migrating to AddCodeLengthToGame (20150121131902)
[1m[35m (0.1ms)[0m begin transaction
[1m[36m (0.4ms)[0m [1mALTER TABLE "games" ADD "code_length" integer[0m
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150121131902"]]
[1m[36m (1.6ms)[0m [1mcommit transaction[0m
Migrating to AddDescriptionToGame (20150123151521)
[1m[35m (0.1ms)[0m begin transaction
[1m[36m (0.3ms)[0m [1mALTER TABLE "games" ADD "description" text[0m
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150123151521"]]
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
Migrating to CreateGameRequests (20150128105336)
[1m[35m (0.1ms)[0m begin transaction
[1m[36m (0.3ms)[0m [1mCREATE TABLE "game_requests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "accepted" boolean, "requests" integer DEFAULT 1, "created_at" datetime, "updated_at" datetime) [0m
[1m[35m (0.4ms)[0m CREATE UNIQUE INDEX "index_game_requests_on_name" ON "game_requests" ("name")
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150128105336"]]
[1m[35m (0.7ms)[0m commit transaction
Migrating to AddAttributesToGameRequest (20150128155033)
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35m (0.3ms)[0m ALTER TABLE "game_requests" ADD "slug" varchar(255)
[1m[36m (0.1ms)[0m [1mALTER TABLE "game_requests" ADD "creator" varchar(255)[0m
[1m[35m (0.1ms)[0m ALTER TABLE "game_requests" ADD "cover_url" varchar(255)
[1m[36m (0.1ms)[0m [1mALTER TABLE "game_requests" ADD "company_url" varchar(255)[0m
[1m[35m (0.1ms)[0m ALTER TABLE "game_requests" ADD "code_length" varchar(255)
[1m[36m (0.2ms)[0m [1mALTER TABLE "game_requests" ADD "description" varchar(255)[0m
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150128155033"]]
[1m[36m (1.8ms)[0m [1mcommit transaction[0m
Migrating to AddCoinsToUser (20150206134534)
[1m[35m (0.1ms)[0m begin transaction
[1m[36m (0.5ms)[0m [1mALTER TABLE "users" ADD "coins" integer DEFAULT 0[0m
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150206134534"]]
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
Started GET “/” for 127.0.0.1 at 2015-06-20 16:45:11 +0200
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (49.0ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.8ms) Rendered widgets/_advertisement.html.erb (0.7ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (2.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___906210575850529079_70296993055640 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m Rendered widgets/_top_users.html.erb (1.6ms) Rendered widgets/_advertisement.html.erb (0.2ms) Rendered welcome/index.html.erb within layouts/application (63.9ms) Rendered shared/_header.html.erb (9.7ms) Rendered shared/_splash.html.erb (0.7ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 1493ms (Views: 1470.2ms | ActiveRecord: 1.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-20 16:45:12 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-20 16:45:12 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-20 16:45:12 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-20 16:45:12 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-20 16:45:12 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-20 16:45:12 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-20 16:45:12 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-20 16:45:12 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-20 16:45:12 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-20 16:45:12 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-20 16:45:12 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-20 16:45:12 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-20 16:45:12 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-20 16:45:12 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-20 16:45:12 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-20 16:45:12 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-20 16:45:12 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-20 16:45:12 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-20 16:45:12 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-20 16:45:12 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-20 16:45:12 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-20 16:45:12 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-20 16:45:12 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-20 16:45:12 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-20 16:45:12 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-20 16:45:12 +0200
Started GET “/users/sign_in” for 127.0.0.1 at 2015-06-20 16:45:28 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (1.2ms) Rendered devise/sessions/new.html.erb within layouts/application (8.1ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 29ms (Views: 17.3ms | ActiveRecord: 0.0ms)
Started GET “/users/sign_up” for 127.0.0.1 at 2015-06-20 16:45:31 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.7ms) Rendered devise/registrations/new.html.erb within layouts/application (3.4ms) Rendered shared/_header.html.erb (2.4ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.0ms)
Started GET “/users/sign_in” for 127.0.0.1 at 2015-06-20 16:46:19 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (0.8ms) Rendered devise/sessions/new.html.erb within layouts/application (6.3ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 20ms (Views: 18.7ms | ActiveRecord: 0.0ms)
Started POST “/users/sign_in” for 127.0.0.1 at 2015-06-20 16:46:27 +0200 Processing by Devise::SessionsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"rO/ONAz3ce1a1QVYXWWu6AoSXjFOXogaRALMK7ymhYQ=", "user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."email" = 'admin@example.com' ORDER BY "users"."id" ASC LIMIT 1
Completed 401 Unauthorized in 5ms Processing by Devise::SessionsController#new as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"rO/ONAz3ce1a1QVYXWWu6AoSXjFOXogaRALMK7ymhYQ=", "user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"}
Rendered devise/shared/_links.html.erb (0.3ms)
Rendered devise/sessions/new.html.erb within layouts/application (2.4ms)
Rendered shared/_header.html.erb (1.7ms)
Rendered shared/_footer.html.erb (1.1ms)
Completed 200 OK in 84ms (Views: 17.5ms | ActiveRecord: 0.0ms)
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-20 16:46:27 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-20 16:46:27 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-20 16:46:27 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-20 16:46:27 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-20 16:46:27 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-20 16:46:27 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-20 16:46:27 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-20 16:46:27 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-20 16:46:27 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-20 16:46:27 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-20 16:46:27 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-20 16:46:27 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-20 16:46:27 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-20 16:46:27 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-20 16:46:27 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-20 16:46:27 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-20 16:46:27 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-20 16:46:27 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-20 16:46:27 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-20 16:46:27 +0200
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-20 16:46:27 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-20 16:46:27 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-20 16:46:27 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-20 16:46:27 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-20 16:46:27 +0200
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'admin@example.com' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('admin') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (2.2ms)[0m [1mINSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["admin", true], ["created_at", Sat, 20 Jun 2015 14:46:49 UTC +00:00], ["email", "admin@example.com"], ["encrypted_password", "$2a$10$B53N.yxPW63ZfXPH40qDo.EUivo/Bl70vjR6Wby4SolsnNqAV53U2"], ["nickname", "admin"], ["updated_at", Sat, 20 Jun 2015 14:46:49 UTC +00:00]]
[1m[35m (0.6ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'creola_connelly@yundtharris.org' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('alanis_davis') LIMIT 1[0m
Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:49 UTC +00:00], ["email", "creola_connelly@yundtharris.org"], ["encrypted_password", "$2a$10$lhdwJoouoihRbzvGBNka3ucGjOg9EZycA/EJK4BoQESECteNGLpAS"], ["nickname", "alanis_davis"], ["updated_at", Sat, 20 Jun 2015 14:46:49 UTC +00:00]]
[1m[36m (1.6ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'delpha@mills.com' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('donna.klein') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:49 UTC +00:00], ["email", "delpha@mills.com"], ["encrypted_password", "$2a$10$iI4czb.4Yt6Z/Bgu1XcAUeL6eTmG27A1XdUjKChYJt8p/KeOoVfZi"], ["nickname", "donna.klein"], ["updated_at", Sat, 20 Jun 2015 14:46:49 UTC +00:00]]
[1m[35m (1.5ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lenna.luettgen@bruen.org' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('veronica_donnelly') LIMIT 1[0m
Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:49 UTC +00:00], ["email", "lenna.luettgen@bruen.org"], ["encrypted_password", "$2a$10$DNQNNstHuqMrMvlm2Gx8d.z5Ld4MrxFPC4WZSPpZNbPe4mnWV5mfu"], ["nickname", "veronica_donnelly"], ["updated_at", Sat, 20 Jun 2015 14:46:49 UTC +00:00]]
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'kara.willms@kemmer.com' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('haie') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:49 UTC +00:00], ["email", "kara.willms@kemmer.com"], ["encrypted_password", "$2a$10$BfxTusRU.fNgvoa/DFwhW.NXNmzqrDXAMwh1CjL3jBPHAOpnKPabW"], ["nickname", "haie"], ["updated_at", Sat, 20 Jun 2015 14:46:49 UTC +00:00]]
[1m[35m (1.7ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'damian_dooley@barton.org' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('faye') LIMIT 1[0m
Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:49 UTC +00:00], ["email", "damian_dooley@barton.org"], ["encrypted_password", "$2a$10$6jVVLpFmZS2S2JoiPdGYcOK9WxeQRPyyluUtF4S2hP2dBrMnHdHtS"], ["nickname", "faye"], ["updated_at", Sat, 20 Jun 2015 14:46:49 UTC +00:00]]
[1m[36m (1.6ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'leo@torphyokeefe.name' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('orland.ryan') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00], ["email", "leo@torphyokeefe.name"], ["encrypted_password", "$2a$10$X8.IeP.yUzGn4U.zVP266.RsSUysHv5dK8pJCx5OT8hXXxjJMX.U2"], ["nickname", "orland.ryan"], ["updated_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00]]
[1m[35m (1.7ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jamaal_schmeler@bergnaum.org' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('forrest_streich') LIMIT 1[0m
Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00], ["email", "jamaal_schmeler@bergnaum.org"], ["encrypted_password", "$2a$10$IwWZzUEuHMPz46H2MZWQtOBnEK3ZCwHQpgCongtTC6zRpLAVl53Ry"], ["nickname", "forrest_streich"], ["updated_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00]]
[1m[36m (1.5ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'alek@oconner.name' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('simone_weinat') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00], ["email", "alek@oconner.name"], ["encrypted_password", "$2a$10$YpLIpPP6dIgB0o9LQ1y1HenOVd0Exkzgsi5KB8kHxNXLJDw9R8uMK"], ["nickname", "simone_weinat"], ["updated_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00]]
[1m[35m (1.7ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'roselyn@wilderman.name' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('hester') LIMIT 1[0m
Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (1.0ms)[0m INSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00], ["email", "roselyn@wilderman.name"], ["encrypted_password", "$2a$10$eT88V0Qn2/yJbgtT4dn4S.smdlPvRiJEL6J9OkavsuK7uKEr0ToZ6"], ["nickname", "hester"], ["updated_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00]]
[1m[36m (7.2ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'toney_brekke@altenwerthzulauf.com' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('theron.reichel') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00], ["email", "toney_brekke@altenwerthzulauf.com"], ["encrypted_password", "$2a$10$nYjpErS8oU3I1e9NzuVqBeEJBCsw..vsaR6M.cyg5/ZEKMGFXif56"], ["nickname", "theron.reichel"], ["updated_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00]]
[1m[35m (0.6ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'laurie@kuhn.net' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('conor.heaney') LIMIT 1[0m
Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00], ["email", "laurie@kuhn.net"], ["encrypted_password", "$2a$10$rRzgJ/WdOcg/6XO3qMFHg.0/r/l5G0KqqCMJ9/eY.0Tj7US4DSwgW"], ["nickname", "conor.heaney"], ["updated_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00]]
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'sophia.bednar@west.biz' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('hank') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00], ["email", "sophia.bednar@west.biz"], ["encrypted_password", "$2a$10$3K6pWZVuD1ZmhY.y11XXK.dwaB/Im9YjwF8x.xHvRj7oy1BnBADHa"], ["nickname", "hank"], ["updated_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'remington@corkery.net' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('aniyah') LIMIT 1[0m
Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00], ["email", "remington@corkery.net"], ["encrypted_password", "$2a$10$vLmxJiRGRole1wVFyXYP4.5zBJ7kclw8FMHEyiSlpy939DiRzteDu"], ["nickname", "aniyah"], ["updated_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00]]
[1m[36m (1.6ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'francis@stanton.name' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('daron') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00], ["email", "francis@stanton.name"], ["encrypted_password", "$2a$10$.E/qjiW14jFcnJmOpKKdR.M.voCGU.wCqD/96ka1omPTub2Yf8sy."], ["nickname", "daron"], ["updated_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00]]
[1m[35m (1.5ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'charlotte@pfannerstill.com' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('winona_schowalter') LIMIT 1[0m
Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00], ["email", "charlotte@pfannerstill.com"], ["encrypted_password", "$2a$10$paHtYSzYDOLJ.QAY90q0IeAxvgylFjeHGESsATxLfxyeYIF3rcNVy"], ["nickname", "winona_schowalter"], ["updated_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00]]
[1m[36m (1.5ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'jaqueline_hermiston@littel.org' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('braulio') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00], ["email", "jaqueline_hermiston@littel.org"], ["encrypted_password", "$2a$10$PCNI/P5itMzCI4YbEYos5eLr/A6OazVTnLMB4i3ciKhSm6AjTc46a"], ["nickname", "braulio"], ["updated_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00]]
[1m[35m (0.6ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'claude@weimannpouros.name' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('caleigh') LIMIT 1[0m
Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00], ["email", "claude@weimannpouros.name"], ["encrypted_password", "$2a$10$Uo14NPLh2iGSslb8eF5Iqebz9Fb2SnxhOcUTQuhy0cjUOtDh/RWzW"], ["nickname", "caleigh"], ["updated_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00]]
[1m[36m (2.1ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'rebeka.shields@quigley.org' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('brandy_gulgowski') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00], ["email", "rebeka.shields@quigley.org"], ["encrypted_password", "$2a$10$7O8tnBWA7bQsGEAK3RjbBuWUz8LO7S2AiMz0VsB0AcmwN45RC6AJG"], ["nickname", "brandy_gulgowski"], ["updated_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00]]
[1m[35m (1.6ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'trycia.hodkiewicz@gorczany.info' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('theresia') LIMIT 1[0m
Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00], ["email", "trycia.hodkiewicz@gorczany.info"], ["encrypted_password", "$2a$10$F5nZUWZns7EQkDiQ.OvmNO940usjc6ikGwPS0rgWrC9/K/l0qb/O."], ["nickname", "theresia"], ["updated_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00]]
[1m[36m (2.2ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'hazle@lehner.com' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('earnestine') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00], ["email", "hazle@lehner.com"], ["encrypted_password", "$2a$10$nmH2Xw3T//C7Zsh2buVaZuAie/5EyYnQmMbpyETj7lHt.0qdyzOVm"], ["nickname", "earnestine"], ["updated_at", Sat, 20 Jun 2015 14:46:50 UTC +00:00]]
[1m[35m (1.6ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'josefina@schmidt.com' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('arvilla') LIMIT 1[0m
Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00], ["email", "josefina@schmidt.com"], ["encrypted_password", "$2a$10$Pmqif5J5BCvTrWFq2TzV8eWnmyBVck7ihamBdm.wPSbDaPKpv3pnm"], ["nickname", "arvilla"], ["updated_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00]]
[1m[36m (1.7ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'amalia.breitenberg@glover.name' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('jane.crist') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00], ["email", "amalia.breitenberg@glover.name"], ["encrypted_password", "$2a$10$C8gjtEzavnhpkOgzlNJ0L.ICciaNhDa5bGGXGsyfAHGZuELZsHnsi"], ["nickname", "jane.crist"], ["updated_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00]]
[1m[35m (1.6ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'noel.ledner@raudickens.info' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('dylan.wyman') LIMIT 1[0m
Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00], ["email", "noel.ledner@raudickens.info"], ["encrypted_password", "$2a$10$7aw8Z8d6b2vfX5GGRLG20OJhtVXmUJbz8vtCcQ1dMcA0ppGqlPAbO"], ["nickname", "dylan.wyman"], ["updated_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00]]
[1m[36m (1.6ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'bryce_volkman@boylepowlowski.biz' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('harold') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00], ["email", "bryce_volkman@boylepowlowski.biz"], ["encrypted_password", "$2a$10$zMvJU4xc5w/0xG5bTHfvNub9quBwdVAxsR7h/TNpcS8rq43W7.53."], ["nickname", "harold"], ["updated_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00]]
[1m[35m (1.6ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'colten.goyette@west.org' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('lois.rogahn') LIMIT 1[0m
Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00], ["email", "colten.goyette@west.org"], ["encrypted_password", "$2a$10$7IYyF9bzeZnlgfmC88jLLuMzIHwEA9h7MGEgDHWdyjanD2cZoaASe"], ["nickname", "lois.rogahn"], ["updated_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00]]
[1m[36m (1.7ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'robb@harris.org' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('jayson_ko') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00], ["email", "robb@harris.org"], ["encrypted_password", "$2a$10$x/Vu4hvJFNWDioQLrv6Vke6QZmirTeDrxV48y5TVeP9gyeh0wBdT."], ["nickname", "jayson_ko"], ["updated_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00]]
[1m[35m (1.6ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'kennith_bernier@dietrich.info' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('cora') LIMIT 1[0m
Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00], ["email", "kennith_bernier@dietrich.info"], ["encrypted_password", "$2a$10$7cxUqNUfMUeEogtpqxpOSOOK6t2VLumo69pb/pDNEUhzBXg.Kv8j6"], ["nickname", "cora"], ["updated_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00]]
[1m[36m (2.2ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'coleman@hettingerstiedemann.net' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('irma.mann') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00], ["email", "coleman@hettingerstiedemann.net"], ["encrypted_password", "$2a$10$/xE2AlCeXPSiinfQNmayTOc6dAb2T1qSRkM9BozmU9Mmwr/Fj7HWK"], ["nickname", "irma.mann"], ["updated_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00]]
[1m[35m (1.6ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'melisa@johnsongrant.info' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('hanna') LIMIT 1[0m
Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00], ["email", "melisa@johnsongrant.info"], ["encrypted_password", "$2a$10$mUUdnm1zVSwHSWWQLGpkqO7B0PWX6xwPUfDWJAbm/fD/.o3n.u7/W"], ["nickname", "hanna"], ["updated_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00]]
[1m[36m (1.7ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'chase@oberbrunnerwilkinson.biz' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('martine.cain') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00], ["email", "chase@oberbrunnerwilkinson.biz"], ["encrypted_password", "$2a$10$o9lAUPHU2THEMEgempXBbOZjA1QUecQMabyYY77Otg8JmjXW/e0JG"], ["nickname", "martine.cain"], ["updated_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00]]
[1m[35m (1.7ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'afton.emard@damorethiel.net' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('theron') LIMIT 1[0m
Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00], ["email", "afton.emard@damorethiel.net"], ["encrypted_password", "$2a$10$PlQclU/jDgkNpBUN0nxMOeLYuTIt2vK2T.Zt1b5UCzTM2TirtQXB."], ["nickname", "theron"], ["updated_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00]]
[1m[36m (1.8ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'mona@ziemann.info' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('kaylie_schimmel') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00], ["email", "mona@ziemann.info"], ["encrypted_password", "$2a$10$j5MbfJQFdm7Lte9udhDTSOlr2ilOIFDvGnJpAkEVCKDltfW7SXgdu"], ["nickname", "kaylie_schimmel"], ["updated_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00]]
[1m[35m (1.9ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'rosemarie.koelpin@nienow.org' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('clair.rempel') LIMIT 1[0m
Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00], ["email", "rosemarie.koelpin@nienow.org"], ["encrypted_password", "$2a$10$Z1k4Sl.uHtqN887kOWbAcen47K1zSWE0Wb4RRBB3GxqNE8Pa0WQhG"], ["nickname", "clair.rempel"], ["updated_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00]]
[1m[36m (5.3ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'reed@borer.biz' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('teresa') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00], ["email", "reed@borer.biz"], ["encrypted_password", "$2a$10$6.lA4n3yabvjPI/1CQuBqeKZq.P0.PziqIsjXmf1qyZ2/JeAfU0IW"], ["nickname", "teresa"], ["updated_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00]]
[1m[35m (1.6ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'harley_huel@reilly.name' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('brenda') LIMIT 1[0m
Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00], ["email", "harley_huel@reilly.name"], ["encrypted_password", "$2a$10$HYmEaFmWDIZndJqDhorlEOrk9vTIyc7UiZBjB/rTnQCHB6ayLk4qC"], ["nickname", "brenda"], ["updated_at", Sat, 20 Jun 2015 14:46:51 UTC +00:00]]
[1m[36m (1.6ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'maria@deckow.biz' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('sidney_predovic') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00], ["email", "maria@deckow.biz"], ["encrypted_password", "$2a$10$yUXcuEaA8Ujzasv6G/jzwOPV0z/odmZOPDg5uHeutzfgglAPrOaF6"], ["nickname", "sidney_predovic"], ["updated_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00]]
[1m[35m (1.6ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'harvey_yundt@dubuque.com' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('isaac') LIMIT 1[0m
Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00], ["email", "harvey_yundt@dubuque.com"], ["encrypted_password", "$2a$10$WrdathYBcpGCOpHzcPCfCOoqie6JKtT2BI.j9yV.6fuR.In3.jNDq"], ["nickname", "isaac"], ["updated_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00]]
[1m[36m (1.7ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'laron@berge.biz' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('ubaldo_stracke') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00], ["email", "laron@berge.biz"], ["encrypted_password", "$2a$10$iwM4jjvsrxL60E1/wbkvD.mrSYMuXr6GsEJV1DCmgrrNl/M8LI1nq"], ["nickname", "ubaldo_stracke"], ["updated_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00]]
[1m[35m (1.6ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'neva@bergstrom.com' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('loren') LIMIT 1[0m
Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00], ["email", "neva@bergstrom.com"], ["encrypted_password", "$2a$10$QiGvjkdSinbNjm616ckY/.1dPCDg01qJwCwTh5reylkECJTXaDI6y"], ["nickname", "loren"], ["updated_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00]]
[1m[36m (1.6ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'amelia@pricewaelchi.biz' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('addison') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00], ["email", "amelia@pricewaelchi.biz"], ["encrypted_password", "$2a$10$7ZO2OHsMEmKLA3OSNNbC1emcr3My0kuIOA3vVZfpEd.unZfFBrH6m"], ["nickname", "addison"], ["updated_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00]]
[1m[35m (1.8ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lauryn@berniercollier.info' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('stephen.jast') LIMIT 1[0m
Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00], ["email", "lauryn@berniercollier.info"], ["encrypted_password", "$2a$10$MGd0gQ2HcphaWQPVlChEaO7q9ifsFdJWWnY/lUtakWZmOwHQ3aHvK"], ["nickname", "stephen.jast"], ["updated_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00]]
[1m[36m (1.5ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'rosamond@kohler.name' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('elliot.swaniawski') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00], ["email", "rosamond@kohler.name"], ["encrypted_password", "$2a$10$s1tmbkOVPK0m0T/FRSJd1OtYaBTMKf.11177No6tg7oqvJL/U8Dse"], ["nickname", "elliot.swaniawski"], ["updated_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00]]
[1m[35m (1.7ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lenore@daniel.info' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('florence_gleichner') LIMIT 1[0m
Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00], ["email", "lenore@daniel.info"], ["encrypted_password", "$2a$10$maqgK85ASDhANulCuREDbu4VXccjNW.uh7.xdCsaSPm/TV5qVfFBi"], ["nickname", "florence_gleichner"], ["updated_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00]]
[1m[36m (1.7ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'candida@king.com' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('mayra_schiller') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00], ["email", "candida@king.com"], ["encrypted_password", "$2a$10$fTmSLLEdAjmKk4F9A3LvhOWgAA4IKXoIZCey2BqvFHFIdHLc5Hm7."], ["nickname", "mayra_schiller"], ["updated_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00]]
[1m[35m (2.0ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'howard_graham@heller.com' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('dorian') LIMIT 1[0m
Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00], ["email", "howard_graham@heller.com"], ["encrypted_password", "$2a$10$0YGNMprWUCkSJFUS.iHoW./i4zoqE/mp0swW9NKBawx5R84zePVcu"], ["nickname", "dorian"], ["updated_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00]]
[1m[36m (1.8ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'keira_towne@kohler.info' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('lorenzo.ohara') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00], ["email", "keira_towne@kohler.info"], ["encrypted_password", "$2a$10$B79nSoBnL4ZWebj9c9AlOeH40NgwyAIOBI2W9e.6anYwC2oTmMcK6"], ["nickname", "lorenzo.ohara"], ["updated_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00]]
[1m[35m (1.5ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'breanna@lockmanswaniawski.com' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('pedro_schuster') LIMIT 1[0m
Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00], ["email", "breanna@lockmanswaniawski.com"], ["encrypted_password", "$2a$10$kuGNe3.29fUeGVLtBopveueHlCONEsHcvHpNGlHDE1fQKPsZgG7DS"], ["nickname", "pedro_schuster"], ["updated_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00]]
[1m[36m (1.6ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'maiya@koelpin.com' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('gilbert') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00], ["email", "maiya@koelpin.com"], ["encrypted_password", "$2a$10$RW3zYnfV.RlEQypCe7o2gOASkAVHT/KA9eOcf5199tx1jjxrVQpd2"], ["nickname", "gilbert"], ["updated_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00]]
[1m[35m (1.5ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'pamela.mitchell@hintz.biz' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('clyde') LIMIT 1[0m
Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00], ["email", "pamela.mitchell@hintz.biz"], ["encrypted_password", "$2a$10$zsgrTP8z7eBZyq.zvhgIA.stdFXKSuqv3oDGLbLMK7q9ZL5//5zPG"], ["nickname", "clyde"], ["updated_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00]]
[1m[36m (2.7ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'eli_blanda@kiehn.info' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('michale.simonis') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("admin", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["admin", false], ["created_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00], ["email", "eli_blanda@kiehn.info"], ["encrypted_password", "$2a$10$3ZlfUFKYzU4H8DsdVmadj.rrRPUraw2EQx4TiF1bWr8I04BOSkcjK"], ["nickname", "michale.simonis"], ["updated_at", Sat, 20 Jun 2015 14:46:52 UTC +00:00]]
[1m[35m (39.3ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mGame Exists (0.1ms)[0m SELECT 1 AS one FROM "games" WHERE ("games"."id" IS NOT NULL) AND "games"."slug" = 'spirols-of-doom' LIMIT 1
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "games" ("code_length", "company_url", "cover_url", "created_at", "creator", "description", "name", "slug", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["code_length", 10], ["company_url", "http://www.mitchell.net"], ["cover_url", "http://www.google.com"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["creator", "Ferry LLC"], ["description", "Et corporis neque. Inventore accusamus laboriosam deserunt reprehenderit deleniti."], ["name", "Spirols of Doom"], ["slug", "spirols-of-doom"], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00]]
[1m[35m (1.6ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mGame Exists (0.1ms)[0m SELECT 1 AS one FROM "games" WHERE ("games"."id" IS NOT NULL) AND "games"."slug" = 'swords-of-master' LIMIT 1
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "games" ("code_length", "company_url", "cover_url", "created_at", "creator", "description", "name", "slug", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["code_length", 10], ["company_url", "http://www.ondricka.name"], ["cover_url", "http://www.google.com"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["creator", "Bailey, Hayes and Hegmann"], ["description", "Quod est perspiciatis consequuntur placeat qui. Nostrum et consequatur mollitia sint enim. Rerum aut sequi cum. Blanditiis accusantium recusandae dolorem."], ["name", " Swords of Master"], ["slug", "swords-of-master"], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00]]
[1m[35m (0.7ms)[0m commit transaction
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Exists (0.1ms)[0m SELECT 1 AS one FROM "games" WHERE ("games"."id" IS NOT NULL) AND "games"."slug" = 'fight-of-fist' LIMIT 1
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "games" ("code_length", "company_url", "cover_url", "created_at", "creator", "description", "name", "slug", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["code_length", 8], ["company_url", "http://www.erdmanschneider.net"], ["cover_url", "http://www.google.com"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["creator", "Romaguera, Lockman and Kling"], ["description", "Veritatis harum suscipit molestiae aperiam odit. Saepe omnis velit rerum et aut. Ut nesciunt fugit. Aut debitis a non temporibus voluptate."], ["name", " Fight of Fist"], ["slug", "fight-of-fist"], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00]]
[1m[35m (0.8ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mGame Exists (0.2ms)[0m SELECT 1 AS one FROM "games" WHERE ("games"."id" IS NOT NULL) AND "games"."slug" = 'anger-of-dark' LIMIT 1
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "games" ("code_length", "company_url", "cover_url", "created_at", "creator", "description", "name", "slug", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["code_length", 12], ["company_url", "http://www.daniel.net"], ["cover_url", "http://www.google.com"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["creator", "Miller, Harber and Jenkins"], ["description", "Praesentium suscipit omnis quos sequi et. Aut nisi at quia."], ["name", " Anger of Dark"], ["slug", "anger-of-dark"], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00]]
[1m[35m (0.5ms)[0m commit transaction
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Exists (0.1ms)[0m SELECT 1 AS one FROM "games" WHERE ("games"."id" IS NOT NULL) AND "games"."slug" = 'presence-of-evil' LIMIT 1
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "games" ("code_length", "company_url", "cover_url", "created_at", "creator", "description", "name", "slug", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["code_length", 9], ["company_url", "http://www.becker.com"], ["cover_url", "http://www.google.com"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["creator", "Reilly, Wisozk and Herzog"], ["description", "Voluptatem vitae rerum. Aut esse et quod voluptatem et."], ["name", " Presence of Evil"], ["slug", "presence-of-evil"], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00]]
[1m[35m (0.6ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mGame Exists (0.2ms)[0m SELECT 1 AS one FROM "games" WHERE ("games"."id" IS NOT NULL) AND "games"."slug" = 'absence-of-darkness' LIMIT 1
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "games" ("code_length", "company_url", "cover_url", "created_at", "creator", "description", "name", "slug", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["code_length", 9], ["company_url", "http://www.schmitt.net"], ["cover_url", "http://www.google.com"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["creator", "Lynch Inc"], ["description", "Perferendis recusandae minima soluta dicta ad aperiam. Aut ullam similique corporis vitae dolor sit. Officia mollitia et autem iste rerum aut. Aut iure nobis incidunt facere aliquid eius fuga."], ["name", " Absence of Darkness"], ["slug", "absence-of-darkness"], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00]]
[1m[35m (0.8ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mGame Exists (0.2ms)[0m SELECT 1 AS one FROM "games" WHERE ("games"."id" IS NOT NULL) AND "games"."slug" = 'master-of-legacy' LIMIT 1
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "games" ("code_length", "company_url", "cover_url", "created_at", "creator", "description", "name", "slug", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["code_length", 10], ["company_url", "http://www.boyer.com"], ["cover_url", "http://www.google.com"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["creator", "Spencer, Bednar and Brown"], ["description", "Tempora voluptatem asperiores. Voluptas quia corrupti. In voluptas provident et enim odit doloremque. Nulla et ullam animi omnis ut repellat."], ["name", " Master of Legacy"], ["slug", "master-of-legacy"], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00]]
[1m[35m (0.8ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mGame Exists (0.1ms)[0m SELECT 1 AS one FROM "games" WHERE ("games"."id" IS NOT NULL) AND "games"."slug" = 'crime-of-war' LIMIT 1
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "games" ("code_length", "company_url", "cover_url", "created_at", "creator", "description", "name", "slug", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["code_length", 9], ["company_url", "http://www.kertzmannreilly.net"], ["cover_url", "http://www.google.com"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["creator", "Legros LLC"], ["description", "Enim sint in et dolor. Minima qui in quia velit et. Quidem quibusdam voluptate voluptas."], ["name", " Crime of War"], ["slug", "crime-of-war"], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00]]
[1m[35m (0.7ms)[0m commit transaction
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Exists (0.1ms)[0m SELECT 1 AS one FROM "games" WHERE ("games"."id" IS NOT NULL) AND "games"."slug" = 'reason-of-destiny' LIMIT 1
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "games" ("code_length", "company_url", "cover_url", "created_at", "creator", "description", "name", "slug", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["code_length", 8], ["company_url", "http://www.dibbertzieme.name"], ["cover_url", "http://www.google.com"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["creator", "Terry, Ledner and Cormier"], ["description", "Aut autem consequatur rerum ut aut dolor ab. Quia labore voluptatum tempora est quia qui sed. Adipisci quis non velit."], ["name", " Reason of Destiny"], ["slug", "reason-of-destiny"], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00]]
[1m[35m (0.7ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mGame Exists (0.2ms)[0m SELECT 1 AS one FROM "games" WHERE ("games"."id" IS NOT NULL) AND "games"."slug" = 'sphere-of-fire' LIMIT 1
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "games" ("code_length", "company_url", "cover_url", "created_at", "creator", "description", "name", "slug", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["code_length", 8], ["company_url", "http://www.ziemannarmstrong.org"], ["cover_url", "http://www.google.com"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["creator", "Goodwin-Casper"], ["description", "Exercitationem ad quidem molestiae porro delectus sit. Vitae omnis animi et fuga omnis incidunt rerum. Dolorum officiis est porro alias. Porro eveniet perferendis."], ["name", " Sphere of Fire"], ["slug", "sphere-of-fire"], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00]]
[1m[35m (0.6ms)[0m commit transaction
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Exists (0.2ms)[0m SELECT 1 AS one FROM "games" WHERE ("games"."id" IS NOT NULL) AND "games"."slug" = 'weapon-of-fate' LIMIT 1
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "games" ("code_length", "company_url", "cover_url", "created_at", "creator", "description", "name", "slug", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["code_length", 11], ["company_url", "http://www.heidenreich.org"], ["cover_url", "http://www.google.com"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["creator", "McGlynn-Harber"], ["description", "Repellat voluptas culpa maiores voluptatem. Quam maxime distinctio. In et est corrupti molestias iste ut."], ["name", " Weapon of Fate"], ["slug", "weapon-of-fate"], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00]]
[1m[35m (0.6ms)[0m commit transaction
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Exists (0.1ms)[0m SELECT 1 AS one FROM "games" WHERE ("games"."id" IS NOT NULL) AND "games"."slug" = 'melody-of-wind' LIMIT 1
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "games" ("code_length", "company_url", "cover_url", "created_at", "creator", "description", "name", "slug", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["code_length", 10], ["company_url", "http://www.hettinger.info"], ["cover_url", "http://www.google.com"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["creator", "Anderson-Kris"], ["description", "Assumenda aperiam sunt tenetur nesciunt minus at. Optio beatae non aut culpa nobis qui et. Possimus fuga reiciendis dolorum voluptatem qui consequatur neque."], ["name", " Melody of Wind"], ["slug", "melody-of-wind"], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00]]
[1m[35m (0.6ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 3]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 3]]
[1m[35mSQL (0.4ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "41187725"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 3], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 29]]
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 5]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 5]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "765875456"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 5], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 28]]
[1m[35m (0.6ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 3]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 3]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "27734205"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 3], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 40]]
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 10]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "18920554"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 10], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 35]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 5]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 5]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "551162849"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 5], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 35]]
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 3]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 3]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "02780851"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 3], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 14]]
[1m[35m (0.7ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 6]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "475958146"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 6], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 16]]
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 10]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "96312158"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 10], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 43]]
[1m[35m (1.3ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 9]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 9]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "76462660"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 9], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 26]]
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 7]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 7]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "3005738656"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 7], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 49]]
[1m[35m (0.7ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "5108311011"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 2], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 1]]
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "978521283"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 6], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 34]]
[1m[35m (0.6ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 6]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "953022554"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 6], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 5]]
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "1171329102"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 2], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 20]]
[1m[35m (0.6ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 8]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 8]]
[1m[35mSQL (0.5ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "293745290"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 8], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 48]]
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "376024214"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 6], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 8]]
[1m[35m (0.7ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 5]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 5]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "731288836"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 5], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 46]]
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 3]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 3]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "93553346"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 3], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 30]]
[1m[35m (1.3ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 3]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 3]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "14735103"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 3], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 27]]
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "7235191511"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 2], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 43]]
[1m[35m (0.7ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 6]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "878754332"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 6], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 17]]
[1m[36m (1.3ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "9053971023"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 2], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 40]]
[1m[35m (1.5ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 1]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "6458452598"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 1], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 26]]
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 5]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 5]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "287722142"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 5], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 50]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "0175722356"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 2], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 24]]
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 7]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 7]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "4615148283"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 7], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 15]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 3]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 3]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "11407529"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 3], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 49]]
[1m[36m (1.3ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "137123111734"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 4], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 11]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 3]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 3]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "91125270"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 3], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 34]]
[1m[36m (1.3ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 7]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 7]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "6814630307"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 7], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 11]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 5]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 5]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "950164021"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 5], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 44]]
[1m[36m (1.6ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 5]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 5]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "637853890"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 5], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 26]]
[1m[35m (1.7ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 6]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "755106341"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 6], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 31]]
[1m[36m (1.5ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "754126814551"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 4], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 36]]
[1m[35m (1.5ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 1]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "1320086731"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 1], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 31]]
[1m[36m (1.5ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 3]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 3]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "33630368"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 3], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 29]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 8]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 8]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "586128426"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 8], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 11]]
[1m[36m (1.5ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "3527071400"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 2], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 42]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "3502458654"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 2], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 17]]
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "334408262"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 6], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 47]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 5]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 5]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "065715143"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 5], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 20]]
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 9]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 9]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "16384328"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 9], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 45]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 4]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mSQL (0.5ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "589925411764"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 4], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 44]]
[1m[36m (2.0ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 5]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 5]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "077846846"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 5], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 12]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 10]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "16872443"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 10], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 14]]
[1m[36m (1.5ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 8]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 8]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "154654921"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 8], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 25]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 10]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "70762100"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 10], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 28]]
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "2815312529"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 1], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 38]]
[1m[35m (2.0ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 5]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 5]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "740434813"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 5], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 14]]
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 5]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 5]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "771103188"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 5], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 23]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "4293674347"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 2], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 4]]
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "414736364"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 6], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 13]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 9]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 9]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "22187816"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 9], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 46]]
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 9]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 9]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "88617642"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 9], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 31]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 5]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 5]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "773527845"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 5], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 2]]
[1m[36m (1.3ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 7]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 7]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "7185973565"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 7], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 26]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 5]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 5]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "238165364"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 5], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 27]]
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "084437177"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 6], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 29]]
[1m[35m (1.3ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 7]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 7]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "4128661066"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 7], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 1]]
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "648455866"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 6], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 42]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 4]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "817513478467"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 4], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 13]]
[1m[36m (1.5ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 7]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 7]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "3293503587"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 7], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 43]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 5]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 5]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "153660703"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 5], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 20]]
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 5]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 5]]
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "163839314"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 5], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 15]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 8]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 8]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "011688434"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 8], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 38]]
[1m[36m (2.3ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 11]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 11]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "02451716856"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 11], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 50]]
[1m[35m (1.3ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 7]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 7]]
[1m[35mSQL (0.4ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "7460230337"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 7], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 26]]
[1m[36m (1.8ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 5]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 5]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "736072746"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 5], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 30]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "7450782188"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 2], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 6]]
[1m[36m (1.3ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 9]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 9]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "75642587"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 9], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 30]]
[1m[35m (2.0ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 5]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 5]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "451225133"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 5], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 23]]
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "4249790853"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 2], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 13]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 10]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "37524267"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 10], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 37]]
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "687509354"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 6], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 45]]
[1m[35m (1.3ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 10]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "23326065"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 10], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 19]]
[1m[36m (1.5ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 5]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 5]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "317616863"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 5], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 41]]
[1m[35m (0.7ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 1]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "5087272268"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 1], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 46]]
[1m[36m (1.3ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "0525874471"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 1], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 14]]
[1m[35m (1.3ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 5]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 5]]
[1m[35mSQL (0.4ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "800457912"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 5], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 3]]
[1m[36m (1.6ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 8]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 8]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "124646189"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 8], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 31]]
[1m[35m (1.5ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 7]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 7]]
[1m[35mSQL (0.5ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "4355049592"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 7], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 18]]
[1m[36m (2.1ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 5]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 5]]
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "847364274"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 5], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 27]]
[1m[35m (1.5ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 3]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 3]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "55259574"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 3], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 23]]
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 11]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 11]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "47574108665"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 11], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 45]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 9]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 9]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "58786598"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 9], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 9]]
[1m[36m (1.3ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 10]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "88727643"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 10], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 19]]
[1m[35m (1.6ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 10]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "17878158"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 10], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 47]]
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 8]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 8]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "482275148"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 8], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 42]]
[1m[35m (1.5ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 6]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "554372973"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 6], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 34]]
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "852810777"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 6], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 32]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 3]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 3]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "16435484"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 3], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 29]]
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "1569768776"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 2], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 13]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 11]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 11]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "18476289888"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 11], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 18]]
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "831938978"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 6], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 49]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 4]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mSQL (0.5ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "888394655084"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 4], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 35]]
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 8]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 8]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "431748253"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 8], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 34]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 11]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 11]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "83326955421"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 11], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 30]]
[1m[36m (1.3ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "428300471"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 6], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 7]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 11]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 11]]
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "56824925604"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 11], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 34]]
[1m[36m (1.3ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "1383530266"], ["created_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["game_id", 2], ["updated_at", Sat, 20 Jun 2015 14:46:53 UTC +00:00], ["user_id", 10]]
[1m[35m (1.3ms)[0m commit transaction
Started POST “/users/sign_in” for 127.0.0.1 at 2015-06-20 16:47:05 +0200 Processing by Devise::SessionsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"rO/ONAz3ce1a1QVYXWWu6AoSXjFOXogaRALMK7ymhYQ=", "user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'admin@example.com' ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mSQL (3.9ms)[0m [1mUPDATE "users" SET "remember_created_at" = ?, "updated_at" = ? WHERE "users"."id" = 1[0m [["remember_created_at", Sat, 20 Jun 2015 14:47:05 UTC +00:00], ["updated_at", Sat, 20 Jun 2015 14:47:05 UTC +00:00]]
[1m[35m (1.3ms)[0m commit transaction
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
Binary data inserted for `string` type on column `last_sign_in_ip` Binary data inserted for `string` type on column `current_sign_in_ip`
[1m[35mSQL (1.3ms)[0m UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Sat, 20 Jun 2015 14:47:05 UTC +00:00], ["current_sign_in_at", Sat, 20 Jun 2015 14:47:05 UTC +00:00], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", Sat, 20 Jun 2015 14:47:05 UTC +00:00]] [1m[36m (0.8ms)[0m [1mcommit transaction[0m
Redirected to localhost:3000/users Completed 302 Found in 156ms (ActiveRecord: 7.9ms)
Started GET “/users” for 127.0.0.1 at 2015-06-20 16:47:05 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (8.1ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 21ms (Views: 18.0ms | ActiveRecord: 0.6ms)
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-20 16:47:05 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-20 16:47:05 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-20 16:47:05 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-20 16:47:05 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-20 16:47:05 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-20 16:47:05 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-20 16:47:05 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-20 16:47:05 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-20 16:47:05 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-20 16:47:05 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-20 16:47:05 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-20 16:47:05 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-20 16:47:05 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-20 16:47:05 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-20 16:47:05 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-20 16:47:05 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-20 16:47:05 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-20 16:47:05 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-20 16:47:05 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-20 16:47:05 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-20 16:47:05 +0200
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-20 16:47:05 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-20 16:47:05 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-20 16:47:05 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-20 16:47:05 +0200
Started GET “/users?page=2” for 127.0.0.1 at 2015-06-20 16:47:09 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"2"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 25
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
Rendered users/index.html.erb within layouts/application (7.9ms)
Rendered shared/_header.html.erb (2.6ms)
Rendered shared/_footer.html.erb (1.4ms)
Completed 200 OK in 28ms (Views: 24.9ms | ActiveRecord: 0.9ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-06-20 16:47:11 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (4.1ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 21ms (Views: 18.0ms | ActiveRecord: 0.4ms)
Started GET “/users?page=1” for 127.0.0.1 at 2015-06-20 16:47:12 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"1"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
Rendered users/index.html.erb within layouts/application (5.8ms)
Rendered shared/_header.html.erb (1.6ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 18ms (Views: 15.8ms | ActiveRecord: 0.6ms)
Started GET “/users/6” for 127.0.0.1 at 2015-06-20 16:47:13 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"6"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "6"]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]]
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 6]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]]
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (86.4ms)
Rendered shared/_header.html.erb (0.9ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 97ms (Views: 94.0ms | ActiveRecord: 1.2ms)
Started GET “/users” for 127.0.0.1 at 2015-06-20 16:47:14 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (5.5ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 16ms (Views: 13.9ms | ActiveRecord: 0.5ms)
Started GET “/users/2” for 127.0.0.1 at 2015-06-20 16:47:15 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"2"}
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "2"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]]
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 5]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (6.1ms)
Rendered shared/_header.html.erb (0.9ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 18ms (Views: 15.9ms | ActiveRecord: 0.6ms)
Started GET “/users” for 127.0.0.1 at 2015-06-20 16:47:16 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (5.6ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 17ms (Views: 14.6ms | ActiveRecord: 0.6ms)
Started GET “/users/1” for 127.0.0.1 at 2015-06-20 16:47:17 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"1"}
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "1"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 1]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]]
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 7]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (5.6ms)
Rendered shared/_header.html.erb (0.9ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 16ms (Views: 13.8ms | ActiveRecord: 0.8ms)
Started GET “/games/master-of-legacy” for 127.0.0.1 at 2015-06-20 16:47:21 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"master-of-legacy"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'master-of-legacy' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 7]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]]
[1m[35mGameCode Load (0.2ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 7]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 49]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 15]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 11]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 26]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 26]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 18]]
Rendered games/show.html.erb within layouts/application (46.3ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 60ms (Views: 54.5ms | ActiveRecord: 1.6ms)
Started GET “/users/1” for 127.0.0.1 at 2015-06-20 16:47:23 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"1"}
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "1"]]
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]]
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 1]]
[1m[35mGameCode Load (0.2ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]]
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 7]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (12.4ms)
Rendered shared/_header.html.erb (1.9ms)
Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 92ms (Views: 88.9ms | ActiveRecord: 1.5ms)
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-06-20 16:47:25 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 2]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35mGameCode Load (0.3ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 2]]
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 20]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 43]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 40]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 24]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 42]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 17]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]]
Rendered games/show.html.erb within layouts/application (30.8ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 46ms (Views: 39.0ms | ActiveRecord: 3.1ms)
Started GET “/games” for 127.0.0.1 at 2015-06-20 16:47:29 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.3ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (26.0ms) Rendered games/index.html.erb within layouts/application (30.7ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (2.3ms)
Completed 200 OK in 47ms (Views: 43.5ms | ActiveRecord: 2.6ms)
Started GET “/games?page=2” for 127.0.0.1 at 2015-06-20 16:47:33 +0200 Processing by GamesController#index as HTML
Parameters: {"page"=>"2"}
Rendered shared/_gallery_selector.html.erb (0.0ms)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 8[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 9]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 10]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 11]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 12]]
Rendered games/_index_gallery.html.erb (7.9ms)
Rendered games/index.html.erb within layouts/application (11.7ms)
Rendered shared/_header.html.erb (0.9ms)
Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 23ms (Views: 21.5ms | ActiveRecord: 0.8ms)
Started GET “/games?page=1” for 127.0.0.1 at 2015-06-20 16:47:35 +0200 Processing by GamesController#index as HTML
Parameters: {"page"=>"1"}
Rendered shared/_gallery_selector.html.erb (0.0ms)
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games"
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]]
[1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]]
Rendered games/_index_gallery.html.erb (22.5ms)
Rendered games/index.html.erb within layouts/application (27.3ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (2.4ms)
Completed 200 OK in 42ms (Views: 38.2ms | ActiveRecord: 2.3ms)
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-06-20 16:47:46 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.3ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 1]]
[1m[35m (0.6ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 1]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 26]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 31]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 38]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 46]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 14]]
Rendered games/show.html.erb within layouts/application (16.1ms)
Rendered shared/_header.html.erb (1.4ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 61ms (Views: 56.5ms | ActiveRecord: 2.2ms)
Started GET “/games/fight-of-fist” for 127.0.0.1 at 2015-06-20 16:47:53 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"fight-of-fist"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'fight-of-fist' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 3]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 3]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 29]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 14]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 30]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 27]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 49]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 34]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 29]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 23]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 29]]
Rendered games/show.html.erb within layouts/application (13.1ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 25ms (Views: 21.3ms | ActiveRecord: 1.4ms)
Started GET “/” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (68.3ms) [1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (6.3ms) Rendered widgets/_advertisement.html.erb (0.6ms) [1m[35mUser Load (1.0ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (23.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143467587220 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (2.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (34.1ms) Rendered widgets/_advertisement.html.erb (0.2ms) Rendered welcome/index.html.erb within layouts/application (142.7ms) Rendered shared/_header.html.erb (9.7ms) Rendered shared/_splash.html.erb (1.1ms) Rendered shared/_footer.html.erb (1.1ms)
Completed 200 OK in 383ms (Views: 351.4ms | ActiveRecord: 6.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
Started GET “/assets/fontawesome-webfont.woff?v=4.3.0” for 127.0.0.1 at 2015-06-24 14:58:42 +0200
Started GET “/” for 127.0.0.1 at 2015-06-24 14:58:53 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (4.0ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.4ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (6.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143467587220 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (32.6ms) Rendered widgets/_advertisement.html.erb (0.1ms) Rendered welcome/index.html.erb within layouts/application (49.8ms) Rendered shared/_header.html.erb (2.0ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 63ms (Views: 59.1ms | ActiveRecord: 3.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:54 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:54 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:54 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:54 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:54 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:54 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:54 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:54 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:54 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:54 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:54 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:54 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:54 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:54 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 14:58:54 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 14:58:54 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 14:58:54 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 14:58:54 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 14:58:54 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 14:58:54 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 14:58:54 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 14:58:54 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 14:58:54 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 14:58:54 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 14:58:54 +0200
Started GET “/games” for 127.0.0.1 at 2015-06-24 14:59:05 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.9ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.7ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (1.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.8ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (38.8ms) Rendered games/index.html.erb within layouts/application (48.8ms) Rendered shared/_header.html.erb (3.2ms) Rendered shared/_footer.html.erb (2.0ms)
Completed 200 OK in 68ms (Views: 61.9ms | ActiveRecord: 4.4ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 14:59:06 +0200 Processing by UsersController#index as HTML Completed 401 Unauthorized in 2ms
Started GET “/users/sign_in” for 127.0.0.1 at 2015-06-24 14:59:06 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (2.2ms) Rendered devise/sessions/new.html.erb within layouts/application (92.4ms) Rendered shared/_header.html.erb (2.6ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 114ms (Views: 109.7ms | ActiveRecord: 0.0ms)
Started GET “/games” for 127.0.0.1 at 2015-06-24 14:59:06 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (13.1ms) Rendered games/index.html.erb within layouts/application (16.0ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 27ms (Views: 24.8ms | ActiveRecord: 1.1ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 14:59:08 +0200 Processing by UsersController#index as HTML Completed 401 Unauthorized in 1ms
Started GET “/users/sign_in” for 127.0.0.1 at 2015-06-24 14:59:08 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (1.0ms) Rendered devise/sessions/new.html.erb within layouts/application (3.7ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 19ms (Views: 16.9ms | ActiveRecord: 0.0ms)
Started GET “/games” for 127.0.0.1 at 2015-06-24 14:59:08 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (11.8ms) Rendered games/index.html.erb within layouts/application (14.8ms) Rendered shared/_header.html.erb (0.9ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 25ms (Views: 23.0ms | ActiveRecord: 1.1ms)
Started GET “/” for 127.0.0.1 at 2015-06-24 14:59:09 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.7ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.1ms) Rendered widgets/_advertisement.html.erb (0.4ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (4.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143509632480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (16.6ms) Rendered widgets/_advertisement.html.erb (0.2ms) Rendered welcome/index.html.erb within layouts/application (32.6ms) Rendered shared/_header.html.erb (1.7ms) Rendered shared/_splash.html.erb (0.7ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 45ms (Views: 42.2ms | ActiveRecord: 1.9ms)
Started GET “/games” for 127.0.0.1 at 2015-06-24 14:59:10 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (19.3ms) Rendered games/index.html.erb within layouts/application (21.9ms) Rendered shared/_header.html.erb (3.6ms) Rendered shared/_footer.html.erb (1.4ms)
Completed 200 OK in 41ms (Views: 38.6ms | ActiveRecord: 1.7ms)
Started GET “/” for 127.0.0.1 at 2015-06-24 14:59:11 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.3ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.3ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.9ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143509632480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (19.4ms) Rendered widgets/_advertisement.html.erb (0.3ms) Rendered welcome/index.html.erb within layouts/application (34.3ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_splash.html.erb (0.5ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 92ms (Views: 88.8ms | ActiveRecord: 2.1ms)
Started GET “/games” for 127.0.0.1 at 2015-06-24 14:59:11 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (24.1ms) Rendered games/index.html.erb within layouts/application (27.0ms) Rendered shared/_header.html.erb (5.9ms) Rendered shared/_footer.html.erb (2.2ms)
Completed 200 OK in 49ms (Views: 45.3ms | ActiveRecord: 2.4ms)
Started GET “/” for 127.0.0.1 at 2015-06-24 14:59:12 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.5ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (6.2ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (5.4ms) Rendered widgets/_advertisement.html.erb (0.6ms) [1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (16.7ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143509632480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.7ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (34.5ms) Rendered widgets/_advertisement.html.erb (0.1ms) Rendered welcome/index.html.erb within layouts/application (72.6ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_splash.html.erb (0.3ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 86ms (Views: 81.5ms | ActiveRecord: 3.5ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 14:59:12 +0200 Processing by UsersController#index as HTML Completed 401 Unauthorized in 1ms
Started GET “/users/sign_in” for 127.0.0.1 at 2015-06-24 14:59:12 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (0.3ms) Rendered devise/sessions/new.html.erb within layouts/application (2.0ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 15ms (Views: 13.4ms | ActiveRecord: 0.0ms)
Started GET “/users/sign_up” for 127.0.0.1 at 2015-06-24 14:59:20 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (1.0ms) Rendered devise/registrations/new.html.erb within layouts/application (4.1ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 21ms (Views: 18.4ms | ActiveRecord: 0.0ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 14:59:31 +0200 Processing by UsersController#index as HTML Completed 401 Unauthorized in 1ms
Started GET “/users/sign_in” for 127.0.0.1 at 2015-06-24 14:59:31 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (0.7ms) Rendered devise/sessions/new.html.erb within layouts/application (2.6ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 18ms (Views: 14.6ms | ActiveRecord: 0.0ms)
Started GET “/games” for 127.0.0.1 at 2015-06-24 14:59:32 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (11.5ms) Rendered games/index.html.erb within layouts/application (14.1ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 25ms (Views: 22.5ms | ActiveRecord: 1.1ms)
Started GET “/users/sign_in” for 127.0.0.1 at 2015-06-24 14:59:33 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (0.4ms) Rendered devise/sessions/new.html.erb within layouts/application (2.3ms) Rendered shared/_header.html.erb (2.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 20ms (Views: 15.8ms | ActiveRecord: 0.0ms)
Started GET “/users/sign_up” for 127.0.0.1 at 2015-06-24 14:59:33 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.2ms) Rendered devise/registrations/new.html.erb within layouts/application (1.7ms) Rendered shared/_header.html.erb (0.9ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.0ms)
Started POST “/users” for 127.0.0.1 at 2015-06-24 14:59:42 +0200 Processing by Devise::RegistrationsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"C25LT0JLOcr4v0fKUSq1qwZ3hfuvAzFkc8fOIuC4Jjc=", "user"=>{"nickname"=>"peter", "email"=>"peter@son.de", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "community_terms"=>"0"}, "commit"=>"Sign up"}
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.5ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'peter@son.de' LIMIT 1[0m
[1m[35mUser Exists (0.7ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('peter') LIMIT 1
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
Rendered devise/shared/_links.html.erb (0.4ms)
Rendered devise/registrations/new.html.erb within layouts/application (3.9ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 170ms (Views: 17.4ms | ActiveRecord: 1.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:42 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:42 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:42 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:42 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:42 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:42 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:42 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:42 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:42 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:42 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:42 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:42 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:42 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:42 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:42 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 14:59:42 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 14:59:42 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 14:59:42 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 14:59:42 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 14:59:42 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 14:59:42 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 14:59:42 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 14:59:42 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 14:59:42 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 14:59:42 +0200
Started POST “/users” for 127.0.0.1 at 2015-06-24 14:59:49 +0200 Processing by Devise::RegistrationsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"C25LT0JLOcr4v0fKUSq1qwZ3hfuvAzFkc8fOIuC4Jjc=", "user"=>{"nickname"=>"peter", "email"=>"peter@son.de", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "community_terms"=>"1"}, "commit"=>"Sign up"}
[1m[35m (0.2ms)[0m begin transaction
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'peter@son.de' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('peter') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (4.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 24 Jun 2015 12:59:49 UTC +00:00], ["email", "peter@son.de"], ["encrypted_password", "$2a$10$O1XsP2iZSs5k69GdtHVobuz3rSWBDAS7oo2qppIniP2oPtpsy2VKW"], ["nickname", "peter"], ["updated_at", Wed, 24 Jun 2015 12:59:49 UTC +00:00]]
[1m[35m (0.6ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
Binary data inserted for `string` type on column `last_sign_in_ip` Binary data inserted for `string` type on column `current_sign_in_ip`
[1m[35mSQL (0.7ms)[0m UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 52 [["last_sign_in_at", Wed, 24 Jun 2015 12:59:49 UTC +00:00], ["current_sign_in_at", Wed, 24 Jun 2015 12:59:49 UTC +00:00], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", Wed, 24 Jun 2015 12:59:49 UTC +00:00]] [1m[36m (0.6ms)[0m [1mcommit transaction[0m
Redirected to localhost:3000/users Completed 302 Found in 79ms (ActiveRecord: 6.6ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 14:59:49 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (5.8ms) Rendered shared/_header.html.erb (0.9ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 17ms (Views: 13.6ms | ActiveRecord: 0.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:49 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:49 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:49 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:49 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:49 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:49 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:49 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:49 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:49 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:49 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:49 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:49 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:49 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:49 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 14:59:49 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 14:59:49 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 14:59:49 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 14:59:49 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 14:59:49 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 14:59:49 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 14:59:49 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 14:59:49 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 14:59:49 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 14:59:49 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 14:59:49 +0200
Started GET “/users/1” for 127.0.0.1 at 2015-06-24 14:59:54 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"1"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "1"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]]
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 1]]
[1m[35mGameCode Load (0.8ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]]
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 7]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (18.7ms)
Rendered shared/_header.html.erb (1.8ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 33ms (Views: 30.0ms | ActiveRecord: 1.8ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 14:59:57 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (79.7ms) Rendered shared/_header.html.erb (2.3ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 96ms (Views: 93.8ms | ActiveRecord: 0.7ms)
Started GET “/users?page=2” for 127.0.0.1 at 2015-06-24 14:59:59 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"2"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 25
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
Rendered users/index.html.erb within layouts/application (11.7ms)
Rendered shared/_header.html.erb (1.3ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 26ms (Views: 22.6ms | ActiveRecord: 1.1ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-06-24 15:00:01 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (1.9ms)
Rendered shared/_header.html.erb (0.9ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 13ms (Views: 10.9ms | ActiveRecord: 0.3ms)
Started GET “/users/51” for 127.0.0.1 at 2015-06-24 15:00:03 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"51"}
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "51"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 51]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 51]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (2.6ms)
Rendered shared/_header.html.erb (0.8ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 12ms (Views: 11.0ms | ActiveRecord: 0.4ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 15:00:05 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (11.8ms) Rendered shared/_header.html.erb (1.9ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 28ms (Views: 25.6ms | ActiveRecord: 0.8ms)
Started GET “/users/1” for 127.0.0.1 at 2015-06-24 15:00:06 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"1"}
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "1"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 1]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]]
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 7]]
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (4.8ms)
Rendered shared/_header.html.erb (0.9ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 15ms (Views: 13.1ms | ActiveRecord: 0.8ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 15:00:08 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (10.8ms) Rendered shared/_header.html.erb (1.8ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 25ms (Views: 22.5ms | ActiveRecord: 0.8ms)
Started GET “/users/2” for 127.0.0.1 at 2015-06-24 15:00:09 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"2"}
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "2"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 2]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]]
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 5]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (4.1ms)
Rendered shared/_header.html.erb (0.8ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 14ms (Views: 11.9ms | ActiveRecord: 0.6ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 15:00:10 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (11.1ms) Rendered shared/_header.html.erb (3.7ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 29ms (Views: 26.3ms | ActiveRecord: 1.0ms)
Started GET “/users/4” for 127.0.0.1 at 2015-06-24 15:00:11 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"4"}
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "4"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 4]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]]
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (3.9ms)
Rendered shared/_header.html.erb (0.8ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 14ms (Views: 11.8ms | ActiveRecord: 0.6ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 15:00:12 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (5.1ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 19ms (Views: 17.0ms | ActiveRecord: 0.6ms)
Started GET “/games” for 127.0.0.1 at 2015-06-24 15:00:20 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (23.2ms) Rendered games/index.html.erb within layouts/application (28.5ms) Rendered shared/_header.html.erb (2.7ms) Rendered shared/_footer.html.erb (60.7ms)
Completed 200 OK in 104ms (Views: 100.8ms | ActiveRecord: 2.1ms)
Started GET “/games?page=2” for 127.0.0.1 at 2015-06-24 15:00:23 +0200 Processing by GamesController#index as HTML
Parameters: {"page"=>"2"}
Rendered shared/_gallery_selector.html.erb (0.2ms)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 8[0m
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 9]]
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 10]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 11]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 12]]
Rendered games/_index_gallery.html.erb (10.5ms)
Rendered games/index.html.erb within layouts/application (16.6ms)
Rendered shared/_header.html.erb (1.5ms)
Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 35ms (Views: 32.7ms | ActiveRecord: 1.1ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 15:00:24 +0200 Processing by GameRequestsController#new as HTML
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143467493080 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:34)
Rendered game_requests/new.html.erb within layouts/application (2.3ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 28ms (Views: 18.3ms | ActiveRecord: 0.7ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:00:32 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Doktor", "commit"=>"Check Requests"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Doktor'
[1m[36mGameRequest Load (0.3ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Doktor'[0m
Completed 500 Internal Server Error in 11ms
NameError (undefined local variable or method `elsel' for #<GameRequestsController:0x007f971da4d4e8>):
app/controllers/game_requests_controller.rb:63:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (63.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (85.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:00:35 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Doktor", "commit"=>"Check Requests"}
[1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Doktor'[0m
[1m[35mGameRequest Load (0.3ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Doktor'
Completed 500 Internal Server Error in 13ms
NameError (undefined local variable or method `elsel' for #<GameRequestsController:0x007f971c192520>):
app/controllers/game_requests_controller.rb:63:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (27.6ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:00:36 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Doktor", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.7ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Doktor'
[1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Doktor'[0m
Completed 500 Internal Server Error in 87ms
NameError (undefined local variable or method `elsel' for #<GameRequestsController:0x007f971d9dd738>):
app/controllers/game_requests_controller.rb:63:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.3ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:00:36 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Doktor", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Doktor'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Doktor'
Completed 500 Internal Server Error in 7ms
NameError (undefined local variable or method `elsel' for #<GameRequestsController:0x007f9718edb500>):
app/controllers/game_requests_controller.rb:63:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (21.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:00:40 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Doktor", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Doktor'
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Doktor'[0m
Completed 500 Internal Server Error in 8ms
NameError (undefined local variable or method `elsel' for #<GameRequestsController:0x007f9718d9b0a0>):
app/controllers/game_requests_controller.rb:63:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (102.0ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:02:34 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Doktor", "commit"=>"Check Requests"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Doktor'[0m
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Doktor'
Rendered game_requests/_check_requests.html.erb (1.1ms)
Rendered game_requests/check_requests.js.erb (2.3ms)
Completed 200 OK in 33ms (Views: 4.9ms | ActiveRecord: 1.2ms)
Started GET “/game_requests/” for 127.0.0.1 at 2015-06-24 15:02:47 +0200 Processing by GameRequestsController#index as HTML
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[35mGameRequest Load (1.2ms)[0m SELECT "game_requests".* FROM "game_requests" Rendered game_requests/index.html.erb within layouts/application (0.9ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 26ms (Views: 18.2ms | ActiveRecord: 1.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 15:02:47 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 15:02:47 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 15:02:47 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 15:02:47 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 15:02:47 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 15:02:47 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 15:02:47 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 15:02:47 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 15:02:47 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 15:02:47 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 15:02:47 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 15:02:47 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 15:02:47 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 15:02:47 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 15:02:47 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 15:02:47 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 15:02:47 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 15:02:47 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 15:02:47 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 15:02:47 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 15:02:47 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 15:02:47 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 15:02:47 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 15:02:47 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 15:02:47 +0200
Started GET “/users/52” for 127.0.0.1 at 2015-06-24 15:03:03 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "52"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 52]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 52]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (7.3ms)
Rendered shared/_header.html.erb (0.9ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 31ms (Views: 15.5ms | ActiveRecord: 1.2ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 15:03:05 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (5.6ms) Rendered shared/_header.html.erb (0.9ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 16ms (Views: 13.9ms | ActiveRecord: 0.5ms)
Started GET “/games” for 127.0.0.1 at 2015-06-24 15:03:06 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (30.8ms) Rendered games/index.html.erb within layouts/application (33.4ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 48ms (Views: 40.3ms | ActiveRecord: 2.8ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 15:03:07 +0200 Processing by GameRequestsController#new as HTML
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143467493080 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:34)
Rendered game_requests/new.html.erb within layouts/application (1.4ms) Rendered shared/_header.html.erb (2.5ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 28ms (Views: 16.6ms | ActiveRecord: 1.9ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:03:08 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = ''[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = ''
Rendered game_requests/_check_requests.html.erb (0.4ms)
Rendered game_requests/check_requests.js.erb (1.0ms)
Completed 200 OK in 6ms (Views: 2.6ms | ActiveRecord: 0.5ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:03:09 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awd", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awd'
[1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awd'[0m
Rendered game_requests/_check_requests.html.erb (0.5ms)
Rendered game_requests/check_requests.js.erb (1.1ms)
Completed 200 OK in 5ms (Views: 2.6ms | ActiveRecord: 0.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:03:12 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awd", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awd'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awd'
Rendered game_requests/_check_requests.html.erb (0.4ms)
Rendered game_requests/check_requests.js.erb (0.9ms)
Completed 200 OK in 5ms (Views: 2.6ms | ActiveRecord: 0.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:04:01 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"games", "commit"=>"Check Requests"}
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'games'
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'games'[0m
Rendered game_requests/_check_requests.html.erb (0.6ms)
Rendered game_requests/check_requests.js.erb (1.4ms)
Completed 200 OK in 31ms (Views: 6.3ms | ActiveRecord: 1.2ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:04:13 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"games", "commit"=>"Check Requests"}
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'games'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'games'
Rendered game_requests/_check_requests.html.erb (0.4ms)
Rendered game_requests/check_requests.js.erb (1.0ms)
Completed 200 OK in 8ms (Views: 2.6ms | ActiveRecord: 0.8ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:04:14 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"games", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'games'
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'games'[0m
Rendered game_requests/_check_requests.html.erb (0.4ms)
Rendered game_requests/check_requests.js.erb (0.9ms)
Completed 200 OK in 5ms (Views: 2.6ms | ActiveRecord: 0.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:04:15 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"games", "commit"=>"Check Requests"}
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'games'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'games'
Rendered game_requests/_check_requests.html.erb (0.4ms)
Rendered game_requests/check_requests.js.erb (0.9ms)
Completed 200 OK in 7ms (Views: 2.5ms | ActiveRecord: 0.8ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:04:15 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"games", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'games'
[1m[36mGameRequest Load (0.3ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'games'[0m
Rendered game_requests/_check_requests.html.erb (0.9ms)
Rendered game_requests/check_requests.js.erb (2.4ms)
Completed 200 OK in 9ms (Views: 4.8ms | ActiveRecord: 0.7ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:04:16 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"games", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'games'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'games'
Rendered game_requests/_check_requests.html.erb (0.5ms)
Rendered game_requests/check_requests.js.erb (1.1ms)
Completed 200 OK in 7ms (Views: 3.9ms | ActiveRecord: 0.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:04:16 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"games", "commit"=>"Check Requests"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'games'
[1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'games'[0m
Rendered game_requests/_check_requests.html.erb (0.6ms)
Rendered game_requests/check_requests.js.erb (1.1ms)
Completed 200 OK in 6ms (Views: 2.7ms | ActiveRecord: 0.6ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:04:17 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"games", "commit"=>"Check Requests"}
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'games'[0m
[1m[35mGameRequest Load (0.4ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'games'
Rendered game_requests/_check_requests.html.erb (1.0ms)
Rendered game_requests/check_requests.js.erb (1.8ms)
Completed 200 OK in 8ms (Views: 3.3ms | ActiveRecord: 0.9ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:04:17 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"games", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'games'
[1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'games'[0m
Rendered game_requests/_check_requests.html.erb (1.0ms)
Rendered game_requests/check_requests.js.erb (1.8ms)
Completed 200 OK in 8ms (Views: 4.2ms | ActiveRecord: 0.6ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:04:18 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"games", "commit"=>"Check Requests"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.7ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'games'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'games'
Rendered game_requests/_check_requests.html.erb (0.5ms)
Rendered game_requests/check_requests.js.erb (1.2ms)
Completed 200 OK in 9ms (Views: 3.0ms | ActiveRecord: 1.1ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:04:18 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"games", "commit"=>"Check Requests"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'games'
[1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'games'[0m
Rendered game_requests/_check_requests.html.erb (0.6ms)
Rendered game_requests/check_requests.js.erb (1.5ms)
Completed 200 OK in 8ms (Views: 3.7ms | ActiveRecord: 0.7ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:04:19 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"games", "commit"=>"Check Requests"}
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'games'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'games'
Rendered game_requests/_check_requests.html.erb (0.5ms)
Rendered game_requests/check_requests.js.erb (1.1ms)
Completed 200 OK in 10ms (Views: 2.8ms | ActiveRecord: 1.0ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:04:19 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"games", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'games'
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'games'[0m
Rendered game_requests/_check_requests.html.erb (0.4ms)
Rendered game_requests/check_requests.js.erb (0.9ms)
Completed 200 OK in 5ms (Views: 2.6ms | ActiveRecord: 0.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:04:19 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"games", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'games'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'games'
Rendered game_requests/_check_requests.html.erb (0.4ms)
Rendered game_requests/check_requests.js.erb (0.9ms)
Completed 200 OK in 5ms (Views: 2.6ms | ActiveRecord: 0.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:04:19 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"games", "commit"=>"Check Requests"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'games'
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'games'[0m
Rendered game_requests/_check_requests.html.erb (0.4ms)
Rendered game_requests/check_requests.js.erb (1.0ms)
Completed 200 OK in 7ms (Views: 2.8ms | ActiveRecord: 0.5ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:04:19 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"games", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'games'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'games'
Rendered game_requests/_check_requests.html.erb (0.4ms)
Rendered game_requests/check_requests.js.erb (0.9ms)
Completed 200 OK in 5ms (Views: 2.5ms | ActiveRecord: 0.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:04:19 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"games", "commit"=>"Check Requests"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'games'
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'games'[0m
Rendered game_requests/_check_requests.html.erb (0.4ms)
Rendered game_requests/check_requests.js.erb (0.9ms)
Completed 200 OK in 7ms (Views: 2.7ms | ActiveRecord: 0.7ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:04:20 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"games", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'games'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'games'
Rendered game_requests/_check_requests.html.erb (0.4ms)
Rendered game_requests/check_requests.js.erb (0.9ms)
Completed 200 OK in 5ms (Views: 2.7ms | ActiveRecord: 0.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:04:20 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"games", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'games'
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'games'[0m
Rendered game_requests/_check_requests.html.erb (0.4ms)
Rendered game_requests/check_requests.js.erb (0.9ms)
Completed 200 OK in 5ms (Views: 2.5ms | ActiveRecord: 0.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:04:20 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"games", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'games'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'games'
Rendered game_requests/_check_requests.html.erb (0.4ms)
Rendered game_requests/check_requests.js.erb (0.9ms)
Completed 200 OK in 5ms (Views: 2.5ms | ActiveRecord: 0.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:04:20 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"games", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'games'
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'games'[0m
Rendered game_requests/_check_requests.html.erb (0.4ms)
Rendered game_requests/check_requests.js.erb (0.9ms)
Completed 200 OK in 5ms (Views: 2.7ms | ActiveRecord: 0.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:04:20 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"games", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'games'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'games'
Rendered game_requests/_check_requests.html.erb (0.4ms)
Rendered game_requests/check_requests.js.erb (0.9ms)
Completed 200 OK in 5ms (Views: 2.5ms | ActiveRecord: 0.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:04:20 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"games", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'games'
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'games'[0m
Rendered game_requests/_check_requests.html.erb (0.4ms)
Rendered game_requests/check_requests.js.erb (1.0ms)
Completed 200 OK in 5ms (Views: 2.5ms | ActiveRecord: 0.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:04:20 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"games", "commit"=>"Check Requests"}
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'games'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'games'
Rendered game_requests/_check_requests.html.erb (0.4ms)
Rendered game_requests/check_requests.js.erb (0.9ms)
Completed 200 OK in 7ms (Views: 2.5ms | ActiveRecord: 0.9ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 15:04:21 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"games", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'games'
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'games'[0m
Rendered game_requests/_check_requests.html.erb (0.5ms)
Rendered game_requests/check_requests.js.erb (1.1ms)
Completed 200 OK in 5ms (Views: 2.8ms | ActiveRecord: 0.5ms)
Started GET “/game_requests/” for 127.0.0.1 at 2015-06-24 15:04:24 +0200 Processing by GameRequestsController#index as HTML
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests"[0m Rendered game_requests/index.html.erb within layouts/application (0.1ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 14ms (Views: 10.3ms | ActiveRecord: 0.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 15:04:24 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 15:04:24 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 15:04:24 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 15:04:24 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 15:04:24 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 15:04:24 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 15:04:24 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 15:04:24 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 15:04:24 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 15:04:24 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 15:04:24 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 15:04:24 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 15:04:24 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 15:04:24 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 15:04:24 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 15:04:24 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 15:04:24 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 15:04:24 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 15:04:24 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 15:04:24 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 15:04:24 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 15:04:24 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 15:04:24 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 15:04:24 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 15:04:24 +0200
Started GET “/game_requests” for 127.0.0.1 at 2015-06-24 15:05:17 +0200 Processing by GameRequestsController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests"[0m Rendered game_requests/index.html.erb within layouts/application (0.4ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 12ms (Views: 9.4ms | ActiveRecord: 0.3ms)
Started GET “/game_requests” for 127.0.0.1 at 2015-06-24 15:06:07 +0200 Processing by GameRequestsController#index as HTML
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests"[0m Rendered game_requests/index.html.erb within layouts/application (0.5ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 15ms (Views: 10.5ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 15:06:07 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 15:06:07 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 15:06:07 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 15:06:07 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 15:06:07 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 15:06:07 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 15:06:07 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 15:06:07 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 15:06:07 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 15:06:07 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 15:06:07 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 15:06:07 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 15:06:07 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 15:06:07 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 15:06:07 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 15:06:07 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 15:06:07 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 15:06:07 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 15:06:07 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 15:06:07 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 15:06:07 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 15:06:07 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 15:06:07 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 15:06:07 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 15:06:07 +0200
Started GET “/game_requests” for 127.0.0.1 at 2015-06-24 15:07:04 +0200 Processing by GameRequestsController#index as HTML
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[36mGameRequest Load (0.3ms)[0m [1mSELECT "game_requests".* FROM "game_requests"[0m Rendered game_requests/index.html.erb within layouts/application (0.9ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 76ms (Views: 71.7ms | ActiveRecord: 0.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:04 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:04 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:04 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:04 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:04 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:04 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:04 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:04 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:04 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:04 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:04 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:04 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:04 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:04 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:04 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:04 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:04 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:04 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:04 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:04 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:04 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:04 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:04 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:04 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:04 +0200
Started GET “/game_requests” for 127.0.0.1 at 2015-06-24 15:07:11 +0200 Processing by GameRequestsController#index as HTML
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[36mGameRequest Load (0.3ms)[0m [1mSELECT "game_requests".* FROM "game_requests"[0m Rendered game_requests/index.html.erb within layouts/application (1.2ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 17ms (Views: 12.8ms | ActiveRecord: 0.6ms)
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:11 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:11 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:11 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:11 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:11 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:11 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:11 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:11 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:11 +0200
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:11 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:11 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:11 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:11 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:11 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:11 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:11 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:11 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:11 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:11 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:11 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:11 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:11 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:11 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:11 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:11 +0200
Started GET “/game_requests” for 127.0.0.1 at 2015-06-24 15:07:57 +0200 Processing by GameRequestsController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests"[0m Rendered game_requests/index.html.erb within layouts/application (0.6ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 12ms (Views: 8.8ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:57 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:57 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:57 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:57 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:57 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:57 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:57 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:57 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:57 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:57 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:57 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:57 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:57 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:57 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 15:07:57 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:57 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:57 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:57 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:57 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:57 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:57 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:57 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:57 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:57 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 15:07:57 +0200
Started GET “/game_requests” for 127.0.0.1 at 2015-06-24 15:08:09 +0200 Processing by GameRequestsController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests"[0m Rendered game_requests/index.html.erb within layouts/application (0.7ms) Rendered shared/_header.html.erb (2.0ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 20ms (Views: 16.4ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:09 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:09 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:09 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:09 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:09 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:09 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:09 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:09 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:09 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:09 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:09 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:09 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:09 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:09 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:09 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 15:08:09 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 15:08:09 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 15:08:09 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 15:08:09 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 15:08:09 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 15:08:09 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 15:08:09 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 15:08:09 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 15:08:09 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 15:08:09 +0200
Started GET “/game_requests” for 127.0.0.1 at 2015-06-24 15:08:21 +0200 Processing by GameRequestsController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests"[0m Rendered game_requests/index.html.erb within layouts/application (0.7ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 11ms (Views: 8.9ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:22 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:22 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:22 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:22 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:22 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:22 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:22 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:22 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:22 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:22 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:22 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:22 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:22 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:22 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 15:08:22 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 15:08:22 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 15:08:22 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 15:08:22 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 15:08:22 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 15:08:22 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 15:08:22 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 15:08:22 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 15:08:22 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 15:08:22 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 15:08:22 +0200
Started GET “/game_requests” for 127.0.0.1 at 2015-06-24 15:08:54 +0200 Processing by GameRequestsController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests"[0m Rendered game_requests/index.html.erb within layouts/application (0.6ms)
Completed 500 Internal Server Error in 4ms
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:4: syntax error, unexpected '{', expecting ')' …buffer.append=( link_to :back { fa_icon 'arrow-left' } );@ou… … ^ /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:4: syntax error, unexpected '}', expecting ')' … :back { fa_icon 'arrow-left' } );@output_buffer.safe_append… … ^ /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:6: syntax error, unexpected keyword_end, expecting ')' ';@output_buffer.safe_append=' '; end ;@output_buffer.safe_append='.
^
/Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:29: syntax error, unexpected keyword_ensure, expecting ')' /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:31: syntax error, unexpected keyword_end, expecting ')'):
actionpack (4.0.8) lib/action_view/template.rb:299:in `module_eval' actionpack (4.0.8) lib/action_view/template.rb:299:in `compile' actionpack (4.0.8) lib/action_view/template.rb:248:in `block in compile!' actionpack (4.0.8) lib/action_view/template.rb:236:in `synchronize' actionpack (4.0.8) lib/action_view/template.rb:236:in `compile!' actionpack (4.0.8) lib/action_view/template.rb:142:in `block in render' activesupport (4.0.8) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.8) lib/action_view/template.rb:141:in `render' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:423:in `_run__4448672788349696330__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__2831161720684355606__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.0ms)
Started GET “/game_requests” for 127.0.0.1 at 2015-06-24 15:09:02 +0200 Processing by GameRequestsController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests"[0m Rendered game_requests/index.html.erb within layouts/application (0.5ms)
Completed 500 Internal Server Error in 4ms
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:4: syntax error, unexpected '{', expecting ')' …buffer.append=( link_to :back { fa_icon 'arrow-left' } );@ou… … ^ /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:4: syntax error, unexpected '}', expecting ')' … :back { fa_icon 'arrow-left' } );@output_buffer.safe_append… … ^ /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:27: syntax error, unexpected keyword_ensure, expecting ')' /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:29: syntax error, unexpected keyword_end, expecting ')'):
actionpack (4.0.8) lib/action_view/template.rb:299:in `module_eval' actionpack (4.0.8) lib/action_view/template.rb:299:in `compile' actionpack (4.0.8) lib/action_view/template.rb:248:in `block in compile!' actionpack (4.0.8) lib/action_view/template.rb:236:in `synchronize' actionpack (4.0.8) lib/action_view/template.rb:236:in `compile!' actionpack (4.0.8) lib/action_view/template.rb:142:in `block in render' activesupport (4.0.8) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.8) lib/action_view/template.rb:141:in `render' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:423:in `_run__4448672788349696330__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__2831161720684355606__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.0ms)
Started GET “/game_requests” for 127.0.0.1 at 2015-06-24 15:09:03 +0200 Processing by GameRequestsController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests"[0m Rendered game_requests/index.html.erb within layouts/application (1.1ms)
Completed 500 Internal Server Error in 6ms
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:4: syntax error, unexpected '{', expecting ')' …buffer.append=( link_to :back { fa_icon 'arrow-left' } );@ou… … ^ /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:4: syntax error, unexpected '}', expecting ')' … :back { fa_icon 'arrow-left' } );@output_buffer.safe_append… … ^ /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:27: syntax error, unexpected keyword_ensure, expecting ')' /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:29: syntax error, unexpected keyword_end, expecting ')'):
actionpack (4.0.8) lib/action_view/template.rb:299:in `module_eval' actionpack (4.0.8) lib/action_view/template.rb:299:in `compile' actionpack (4.0.8) lib/action_view/template.rb:248:in `block in compile!' actionpack (4.0.8) lib/action_view/template.rb:236:in `synchronize' actionpack (4.0.8) lib/action_view/template.rb:236:in `compile!' actionpack (4.0.8) lib/action_view/template.rb:142:in `block in render' activesupport (4.0.8) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.8) lib/action_view/template.rb:141:in `render' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:423:in `_run__4448672788349696330__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__2831161720684355606__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.1ms)
Started GET “/game_requests” for 127.0.0.1 at 2015-06-24 15:09:03 +0200 Processing by GameRequestsController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests"[0m Rendered game_requests/index.html.erb within layouts/application (0.4ms)
Completed 500 Internal Server Error in 4ms
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:4: syntax error, unexpected '{', expecting ')' …buffer.append=( link_to :back { fa_icon 'arrow-left' } );@ou… … ^ /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:4: syntax error, unexpected '}', expecting ')' … :back { fa_icon 'arrow-left' } );@output_buffer.safe_append… … ^ /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:27: syntax error, unexpected keyword_ensure, expecting ')' /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:29: syntax error, unexpected keyword_end, expecting ')'):
actionpack (4.0.8) lib/action_view/template.rb:299:in `module_eval' actionpack (4.0.8) lib/action_view/template.rb:299:in `compile' actionpack (4.0.8) lib/action_view/template.rb:248:in `block in compile!' actionpack (4.0.8) lib/action_view/template.rb:236:in `synchronize' actionpack (4.0.8) lib/action_view/template.rb:236:in `compile!' actionpack (4.0.8) lib/action_view/template.rb:142:in `block in render' activesupport (4.0.8) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.8) lib/action_view/template.rb:141:in `render' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:423:in `_run__4448672788349696330__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__2831161720684355606__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (51.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (61.7ms)
Started GET “/game_requests” for 127.0.0.1 at 2015-06-24 15:09:15 +0200 Processing by GameRequestsController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests"[0m Rendered game_requests/index.html.erb within layouts/application (0.7ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 12ms (Views: 9.6ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:15 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:15 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:15 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:15 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:15 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:15 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:15 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:15 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:15 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:15 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:15 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:15 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:15 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:15 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:15 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:15 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:15 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:15 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:15 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:15 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:15 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:15 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:15 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:15 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:15 +0200
Started GET “/game_requests” for 127.0.0.1 at 2015-06-24 15:09:26 +0200 Processing by GameRequestsController#index as HTML
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests"[0m Rendered game_requests/index.html.erb within layouts/application (0.6ms) Rendered shared/_header.html.erb (2.7ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 19ms (Views: 14.7ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:26 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:26 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:26 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:26 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:26 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:26 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:26 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:26 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:26 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:26 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:26 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:26 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:26 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:26 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:26 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:26 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:26 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:26 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:26 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:26 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:26 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:26 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:26 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:26 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:26 +0200
Started GET “/game_requests” for 127.0.0.1 at 2015-06-24 15:09:34 +0200 Processing by GameRequestsController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests"[0m Rendered game_requests/index.html.erb within layouts/application (0.6ms)
Completed 500 Internal Server Error in 5ms
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:4: syntax error, unexpected ')', expecting keyword_end …:back do fa_icon 'arrow-left' );@output_buffer.safe_append=' … ^ /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:27: syntax error, unexpected keyword_ensure, expecting keyword_end /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:29: syntax error, unexpected end-of-input, expecting ')'):
actionpack (4.0.8) lib/action_view/template.rb:299:in `module_eval' actionpack (4.0.8) lib/action_view/template.rb:299:in `compile' actionpack (4.0.8) lib/action_view/template.rb:248:in `block in compile!' actionpack (4.0.8) lib/action_view/template.rb:236:in `synchronize' actionpack (4.0.8) lib/action_view/template.rb:236:in `compile!' actionpack (4.0.8) lib/action_view/template.rb:142:in `block in render' activesupport (4.0.8) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.8) lib/action_view/template.rb:141:in `render' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:423:in `_run__4448672788349696330__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__2831161720684355606__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.3ms)
Started GET “/game_requests” for 127.0.0.1 at 2015-06-24 15:09:38 +0200 Processing by GameRequestsController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests"[0m Rendered game_requests/index.html.erb within layouts/application (0.5ms)
Completed 500 Internal Server Error in 4ms
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:4: syntax error, unexpected ')', expecting keyword_end …:back do fa_icon 'arrow-left' );@output_buffer.safe_append=' … ^ /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:28: syntax error, unexpected keyword_ensure, expecting ')' /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:30: syntax error, unexpected keyword_end, expecting ')'):
actionpack (4.0.8) lib/action_view/template.rb:299:in `module_eval' actionpack (4.0.8) lib/action_view/template.rb:299:in `compile' actionpack (4.0.8) lib/action_view/template.rb:248:in `block in compile!' actionpack (4.0.8) lib/action_view/template.rb:236:in `synchronize' actionpack (4.0.8) lib/action_view/template.rb:236:in `compile!' actionpack (4.0.8) lib/action_view/template.rb:142:in `block in render' activesupport (4.0.8) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.8) lib/action_view/template.rb:141:in `render' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:423:in `_run__4448672788349696330__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__2831161720684355606__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.6ms)
Started GET “/game_requests” for 127.0.0.1 at 2015-06-24 15:09:57 +0200 Processing by GameRequestsController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests"[0m Rendered game_requests/index.html.erb within layouts/application (0.7ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 71ms (Views: 68.2ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:57 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:57 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:57 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:57 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:57 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:57 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:57 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:57 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:57 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:57 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:57 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:57 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:57 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:57 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:57 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:57 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:57 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:57 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:57 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:57 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:57 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:57 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:57 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:57 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:57 +0200
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 15:09:59 +0200 Processing by GameRequestsController#new as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143508916780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:34)
Rendered game_requests/new.html.erb within layouts/application (1.4ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 12ms (Views: 10.7ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:59 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:59 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:59 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:59 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:59 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:59 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:59 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:59 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:59 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:59 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:59 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:59 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:59 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:59 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 15:09:59 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:59 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:59 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:59 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:59 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:59 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:59 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:59 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:59 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:59 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 15:09:59 +0200
Started GET “/games” for 127.0.0.1 at 2015-06-24 15:10:01 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (32.8ms) Rendered games/index.html.erb within layouts/application (37.3ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 62ms (Views: 45.2ms | ActiveRecord: 3.2ms)
Started GET “/” for 127.0.0.1 at 2015-06-24 15:10:57 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.3ms) [1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.9ms) Rendered widgets/_advertisement.html.erb (0.4ms) [1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (5.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143509632480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (103.5ms) Rendered widgets/_advertisement.html.erb (0.3ms) Rendered welcome/index.html.erb within layouts/application (122.6ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.1ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 138ms (Views: 133.2ms | ActiveRecord: 3.5ms)
Started GET “/games” for 127.0.0.1 at 2015-06-24 15:11:41 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (16.4ms) Rendered games/index.html.erb within layouts/application (18.8ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 30ms (Views: 27.3ms | ActiveRecord: 1.4ms)
Started GET “/games?view=listview” for 127.0.0.1 at 2015-06-24 15:11:46 +0200 Processing by GamesController#index as HTML
Parameters: {"view"=>"listview"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]]
[1m[36mGameCode Load (0.4ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]]
Rendered games/_index_listview.html.erb (30.0ms)
Rendered games/index.html.erb within layouts/application (32.3ms)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered shared/_header.html.erb (2.0ms)
Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 45ms (Views: 41.0ms | ActiveRecord: 2.6ms)
Started GET “/games?view=gallery” for 127.0.0.1 at 2015-06-24 15:11:47 +0200 Processing by GamesController#index as HTML
Parameters: {"view"=>"gallery"}
Rendered shared/_gallery_selector.html.erb (0.2ms)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]]
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]]
Rendered games/_index_gallery.html.erb (17.0ms)
Rendered games/index.html.erb within layouts/application (22.5ms)
Rendered shared/_header.html.erb (1.5ms)
Rendered shared/_footer.html.erb (1.7ms)
Completed 200 OK in 39ms (Views: 36.3ms | ActiveRecord: 1.7ms)
Started GET “/games?view=listview” for 127.0.0.1 at 2015-06-24 15:11:47 +0200 Processing by GamesController#index as HTML
Parameters: {"view"=>"listview"}
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]]
[1m[36mGameCode Load (0.3ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]]
[1m[36mGameCode Load (0.3ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]]
[1m[36mGameCode Load (0.5ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]]
Rendered games/_index_listview.html.erb (37.4ms)
Rendered games/index.html.erb within layouts/application (40.5ms)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered shared/_header.html.erb (2.2ms)
Rendered shared/_footer.html.erb (2.0ms)
Completed 200 OK in 57ms (Views: 51.7ms | ActiveRecord: 4.2ms)
Started GET “/games?view=gallery” for 127.0.0.1 at 2015-06-24 15:11:48 +0200 Processing by GamesController#index as HTML
Parameters: {"view"=>"gallery"}
Rendered shared/_gallery_selector.html.erb (0.0ms)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]]
Rendered games/_index_gallery.html.erb (11.9ms)
Rendered games/index.html.erb within layouts/application (14.6ms)
Rendered shared/_header.html.erb (0.9ms)
Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 25ms (Views: 22.4ms | ActiveRecord: 1.3ms)
Started GET “/games?view=listview” for 127.0.0.1 at 2015-06-24 15:11:49 +0200 Processing by GamesController#index as HTML
Parameters: {"view"=>"listview"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]]
Rendered games/_index_listview.html.erb (21.2ms)
Rendered games/index.html.erb within layouts/application (23.1ms)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered shared/_header.html.erb (4.5ms)
Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 85ms (Views: 81.8ms | ActiveRecord: 2.3ms)
Started GET “/” for 127.0.0.1 at 2015-06-24 15:12:10 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.9ms) [1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (5.2ms) Rendered widgets/_advertisement.html.erb (0.3ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (4.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143509632480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (24.6ms) Rendered widgets/_advertisement.html.erb (0.3ms) Rendered welcome/index.html.erb within layouts/application (43.5ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.2ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 58ms (Views: 54.2ms | ActiveRecord: 3.3ms)
Started GET “/games” for 127.0.0.1 at 2015-06-24 16:32:16 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (15.9ms) Rendered games/index.html.erb within layouts/application (19.0ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 37ms (Views: 33.1ms | ActiveRecord: 1.5ms)
Started GET “/” for 127.0.0.1 at 2015-06-24 16:32:36 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.4ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.1ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.4ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143509632480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (15.0ms) Rendered widgets/_advertisement.html.erb (0.1ms) Rendered welcome/index.html.erb within layouts/application (26.7ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (1.9ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 39ms (Views: 35.8ms | ActiveRecord: 2.1ms)
Started GET “/” for 127.0.0.1 at 2015-06-24 16:33:51 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (1.9ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (1.8ms) Rendered widgets/_advertisement.html.erb (0.1ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (2.9ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143467587220 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.2ms) Rendered widgets/_advertisement.html.erb (0.2ms) Rendered welcome/index.html.erb within layouts/application (27.9ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.0ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 174ms (Views: 171.3ms | ActiveRecord: 2.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:51 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:51 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:51 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:51 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:51 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:51 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:51 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:51 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:51 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:51 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:51 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:51 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:51 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:51 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:51 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:51 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:51 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:51 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:51 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:51 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:51 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:51 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:51 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:51 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:51 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-24 16:33:51 +0200
Started GET “/” for 127.0.0.1 at 2015-06-24 16:33:52 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.9ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (6.7ms) Rendered widgets/_advertisement.html.erb (0.3ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (9.6ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143467587220 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (27.0ms) Rendered widgets/_advertisement.html.erb (0.2ms) Rendered welcome/index.html.erb within layouts/application (52.2ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.6ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 67ms (Views: 62.0ms | ActiveRecord: 3.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:52 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:52 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:52 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:52 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:52 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:52 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:52 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:52 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:52 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:52 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:52 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:52 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:52 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:52 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/” for 127.0.0.1 at 2015-06-24 16:33:53 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.7ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (5.2ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (4.9ms) Rendered widgets/_advertisement.html.erb (0.3ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (6.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143467587220 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (24.6ms) Rendered widgets/_advertisement.html.erb (0.1ms) Rendered welcome/index.html.erb within layouts/application (46.4ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (3.3ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 60ms (Views: 56.0ms | ActiveRecord: 3.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-24 16:33:53 +0200
Started GET “/games” for 127.0.0.1 at 2015-06-24 16:33:56 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (42.4ms) Rendered games/index.html.erb within layouts/application (45.0ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 55ms (Views: 53.5ms | ActiveRecord: 1.2ms)
Started GET “/games” for 127.0.0.1 at 2015-06-24 16:34:09 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.4ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (24.6ms) Rendered games/index.html.erb within layouts/application (29.6ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 195ms (Views: 192.2ms | ActiveRecord: 2.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:09 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:09 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:09 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:09 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:09 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:09 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:09 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:09 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:09 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:09 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:09 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:09 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:09 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:09 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:09 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:09 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:09 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:09 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:09 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:09 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:09 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:09 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:09 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:09 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:09 +0200
Started GET “/games” for 127.0.0.1 at 2015-06-24 16:34:19 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (22.2ms) Rendered games/index.html.erb within layouts/application (26.5ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 199ms (Views: 195.5ms | ActiveRecord: 2.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:20 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:20 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:20 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:20 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:20 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:20 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:20 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:20 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:20 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:20 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:20 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:20 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:20 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:20 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:20 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:20 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:20 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:20 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:20 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:20 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:20 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:20 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:20 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:20 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:20 +0200
Started GET “/games” for 127.0.0.1 at 2015-06-24 16:34:27 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.4ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (21.1ms) Rendered games/index.html.erb within layouts/application (24.6ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (1.8ms)
Completed 200 OK in 172ms (Views: 168.2ms | ActiveRecord: 2.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:27 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:27 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:27 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:27 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:27 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:27 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:27 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:27 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:27 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:27 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:27 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:27 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:27 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:27 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:27 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:27 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:27 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:27 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:27 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:27 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:27 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:27 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:27 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:27 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:27 +0200
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 16:34:29 +0200 Processing by GameRequestsController#new as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143467493080 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:34)
Rendered game_requests/new.html.erb within layouts/application (0.9ms) Rendered shared/_header.html.erb (0.9ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 12ms (Views: 10.2ms | ActiveRecord: 0.2ms)
Started GET “/game_requests” for 127.0.0.1 at 2015-06-24 16:34:33 +0200 Processing by GameRequestsController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests"[0m Rendered game_requests/index.html.erb within layouts/application (0.9ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 12ms (Views: 9.7ms | ActiveRecord: 0.3ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 16:34:36 +0200 Processing by GameRequestsController#new as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143467493080 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:34)
Rendered game_requests/new.html.erb within layouts/application (1.5ms) Rendered shared/_header.html.erb (0.8ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 12ms (Views: 10.0ms | ActiveRecord: 0.2ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 16:34:53 +0200 Processing by GameRequestsController#new as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143508916780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:34)
Rendered game_requests/new.html.erb within layouts/application (0.7ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 130ms (Views: 128.4ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:53 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:53 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:53 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:53 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:53 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:53 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:53 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:53 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:53 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:53 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:53 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:53 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:53 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:53 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:53 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:53 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:53 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:53 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:53 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:53 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:53 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:53 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:53 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 16:34:53 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 16:34:53 +0200
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 16:35:10 +0200 Processing by GameRequestsController#new as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143508916780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:34)
Rendered game_requests/new.html.erb within layouts/application (0.8ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 136ms (Views: 133.8ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 16:35:10 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 16:35:10 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 16:35:10 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 16:35:10 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 16:35:10 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 16:35:10 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 16:35:10 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 16:35:10 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 16:35:10 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 16:35:10 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 16:35:10 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 16:35:10 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 16:35:10 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 16:35:10 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 16:35:10 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 16:35:10 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 16:35:10 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 16:35:10 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 16:35:10 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 16:35:10 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 16:35:10 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 16:35:10 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 16:35:10 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 16:35:10 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 16:35:10 +0200
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:35:13 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"", "commit"=>"Check Requests"}
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = ''
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = ''[0m
Rendered game_requests/_check_requests.html.erb (0.4ms)
Rendered game_requests/check_requests.js.erb (0.9ms)
Completed 200 OK in 9ms (Views: 2.8ms | ActiveRecord: 1.1ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:35:14 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"", "commit"=>"Check Requests"}
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = ''[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = ''
Rendered game_requests/_check_requests.html.erb (0.3ms)
Rendered game_requests/check_requests.js.erb (0.8ms)
Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:35:14 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = ''
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = ''[0m
Rendered game_requests/_check_requests.html.erb (0.4ms)
Rendered game_requests/check_requests.js.erb (0.9ms)
Completed 200 OK in 5ms (Views: 2.7ms | ActiveRecord: 0.5ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:35:15 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"", "commit"=>"Check Requests"}
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = ''[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = ''
Rendered game_requests/_check_requests.html.erb (0.3ms)
Rendered game_requests/check_requests.js.erb (0.8ms)
Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.3ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:35:17 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello man", "commit"=>"Check Requests"}
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello man'
[1m[36mGameRequest Load (0.3ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'hello man'[0m
Rendered game_requests/_check_requests.html.erb (70.0ms)
Rendered game_requests/check_requests.js.erb (71.5ms)
Completed 200 OK in 81ms (Views: 74.8ms | ActiveRecord: 1.2ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:36:16 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello man", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello man'[0m
[1m[35mGameRequest Load (0.4ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'hello man'
Rendered game_requests/_check_requests.html.erb (1.5ms)
Rendered game_requests/check_requests.js.erb (2.6ms)
Completed 200 OK in 30ms (Views: 5.0ms | ActiveRecord: 1.3ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 16:36:25 +0200 Processing by GameRequestsController#new as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143508916780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:34)
Rendered game_requests/new.html.erb within layouts/application (0.9ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 79ms (Views: 10.8ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:25 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:25 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:25 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:25 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:25 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:25 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:25 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:25 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:25 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:25 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:25 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:25 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:25 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:25 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:25 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 16:36:25 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 16:36:25 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 16:36:25 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 16:36:25 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 16:36:25 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 16:36:25 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 16:36:25 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 16:36:25 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 16:36:25 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 16:36:25 +0200
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:36:26 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello man", "commit"=>"Check Requests"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'hello man'[0m
Rendered game_requests/_check_requests.html.erb (0.6ms)
Rendered game_requests/check_requests.js.erb (1.3ms)
Completed 200 OK in 8ms (Views: 3.5ms | ActiveRecord: 0.4ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 16:36:38 +0200 Processing by GameRequestsController#new as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143508916780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:34)
Rendered game_requests/new.html.erb within layouts/application (0.9ms) Rendered shared/_header.html.erb (57.5ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 82ms (Views: 65.9ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:39 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:39 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:39 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:39 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:39 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:39 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:39 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:39 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:39 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:39 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:39 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:39 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:39 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:39 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 16:36:39 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 16:36:39 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 16:36:39 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 16:36:39 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 16:36:39 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 16:36:39 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 16:36:39 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 16:36:39 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 16:36:39 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 16:36:39 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 16:36:39 +0200
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:36:39 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello man", "commit"=>"Check Requests"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
Completed 500 Internal Server Error in 6ms
RuntimeError (hello):
app/controllers/game_requests_controller.rb:60:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.1ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:36:40 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello man", "commit"=>"Check Requests"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Completed 500 Internal Server Error in 6ms
RuntimeError (hello):
app/controllers/game_requests_controller.rb:60:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.9ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:36:56 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello manawd", "commit"=>"Check Requests"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'hello manawd'
Rendered game_requests/_check_requests.html.erb (1.9ms)
Rendered game_requests/check_requests.js.erb (3.1ms)
Completed 200 OK in 111ms (Views: 6.1ms | ActiveRecord: 0.7ms)
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Monster Warlord'[0m [1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Monsters' [1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Monstersawd'[0m [1m[35mGameRequest Load (0.3ms)[0m SELECT "game_requests".* FROM "game_requests" ORDER BY "game_requests"."id" ASC LIMIT 1 [1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'hello' LIMIT 1[0m
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 16:38:10 +0200 Processing by GameRequestsController#new as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143508916780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:34)
Rendered game_requests/new.html.erb within layouts/application (1.3ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 29ms (Views: 13.7ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 16:38:10 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 16:38:10 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 16:38:10 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 16:38:10 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 16:38:10 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 16:38:10 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 16:38:10 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 16:38:10 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 16:38:10 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 16:38:10 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 16:38:10 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 16:38:11 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 16:38:11 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 16:38:11 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 16:38:11 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 16:38:11 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 16:38:11 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 16:38:11 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 16:38:11 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 16:38:11 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 16:38:11 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 16:38:11 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 16:38:11 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 16:38:11 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 16:38:11 +0200
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:38:11 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello manawd", "commit"=>"Check Requests"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'hello manawd' LIMIT 1[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 24 Jun 2015 14:38:11 UTC +00:00], ["name", "hello manawd"], ["updated_at", Wed, 24 Jun 2015 14:38:11 UTC +00:00]]
[1m[35m (1.2ms)[0m commit transaction
Rendered game_requests/_check_requests.html.erb (3.9ms)
Rendered game_requests/check_requests.js.erb (8.1ms)
Completed 500 Internal Server Error in 33ms
ActionView::Template::Error (undefined method `each' for nil:NilClass):
1: <h2>These are your Requests:</h2> 2: <div class="request"> 3: <% @game_requests.each do |request| %> 4: <table class="pure-table pure-table-striped"> 5: <tr> 6: <th>Name</th> app/views/game_requests/_check_requests.html.erb:3:in `_app_views_game_requests__check_requests_html_erb___1449538949573344112_70143506320860' app/views/game_requests/check_requests.js.erb:1:in `_app_views_game_requests_check_requests_js_erb___1752338123782368215_70143508537800' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.0ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 16:39:20 +0200 Processing by GameRequestsController#new as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143508916780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:34)
Rendered game_requests/new.html.erb within layouts/application (1.6ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 34ms (Views: 13.9ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 16:39:20 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 16:39:20 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 16:39:20 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 16:39:20 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 16:39:20 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 16:39:20 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 16:39:20 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 16:39:20 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 16:39:20 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 16:39:20 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 16:39:20 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 16:39:20 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 16:39:20 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 16:39:20 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 16:39:20 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 16:39:20 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 16:39:20 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 16:39:20 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 16:39:20 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 16:39:20 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 16:39:20 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 16:39:20 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 16:39:20 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 16:39:20 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 16:39:20 +0200
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:39:21 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello manawd", "commit"=>"Check Requests"}
[1m[35mUser Load (1.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello manawd'[0m
[1m[35mGameRequest Load (0.3ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'hello manawd'
Rendered game_requests/_check_requests.html.erb (87.6ms)
Rendered game_requests/check_requests.js.erb (88.5ms)
Completed 200 OK in 98ms (Views: 90.3ms | ActiveRecord: 1.5ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:39:27 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello manawda", "commit"=>"Check Requests"}
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello manawda'
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
[1m[35mSQL (1.0ms)[0m INSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 24 Jun 2015 14:39:27 UTC +00:00], ["name", "hello manawda"], ["updated_at", Wed, 24 Jun 2015 14:39:27 UTC +00:00]]
[1m[36m (1.6ms)[0m [1mcommit transaction[0m
[1m[35mGameRequest Load (0.5ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'hello manawda'
Rendered game_requests/_check_requests.html.erb (3.2ms)
Rendered game_requests/check_requests.js.erb (6.7ms)
Completed 200 OK in 27ms (Views: 10.7ms | ActiveRecord: 4.3ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:39:30 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Meisters", "commit"=>"Check Requests"}
[1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.6ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Meisters'
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 24 Jun 2015 14:39:30 UTC +00:00], ["name", "Meisters"], ["updated_at", Wed, 24 Jun 2015 14:39:30 UTC +00:00]]
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
[1m[35mGameRequest Load (0.3ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Meisters'
Rendered game_requests/_check_requests.html.erb (2.7ms)
Rendered game_requests/check_requests.js.erb (6.4ms)
Completed 200 OK in 22ms (Views: 10.2ms | ActiveRecord: 3.4ms)
Started GET “/game_requests” for 127.0.0.1 at 2015-06-24 16:39:32 +0200 Processing by GameRequestsController#index as HTML
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" Rendered game_requests/index.html.erb within layouts/application (0.8ms) Rendered shared/_header.html.erb (1.6ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 16ms (Views: 12.6ms | ActiveRecord: 0.6ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:39:35 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Meisters", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Meisters'
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Meisters'[0m
Rendered game_requests/_check_requests.html.erb (0.9ms)
Rendered game_requests/check_requests.js.erb (1.6ms)
Completed 200 OK in 10ms (Views: 4.3ms | ActiveRecord: 0.7ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:39:35 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Meisters", "commit"=>"Check Requests"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Meisters'[0m
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Meisters'
Rendered game_requests/_check_requests.html.erb (1.5ms)
Rendered game_requests/check_requests.js.erb (2.6ms)
Completed 200 OK in 11ms (Views: 5.8ms | ActiveRecord: 0.8ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:39:36 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Meisters", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.6ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Meisters'
[1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Meisters'[0m
Rendered game_requests/_check_requests.html.erb (1.3ms)
Rendered game_requests/check_requests.js.erb (2.1ms)
Completed 200 OK in 11ms (Views: 4.6ms | ActiveRecord: 0.9ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:39:36 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Meisters", "commit"=>"Check Requests"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Meisters'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Meisters'
Rendered game_requests/_check_requests.html.erb (0.8ms)
Rendered game_requests/check_requests.js.erb (1.6ms)
Completed 200 OK in 10ms (Views: 4.5ms | ActiveRecord: 0.9ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:39:36 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Meisters", "commit"=>"Check Requests"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Meisters'
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Meisters'[0m
Rendered game_requests/_check_requests.html.erb (0.7ms)
Rendered game_requests/check_requests.js.erb (1.2ms)
Completed 200 OK in 5ms (Views: 2.8ms | ActiveRecord: 0.5ms)
Started GET “/game_requests” for 127.0.0.1 at 2015-06-24 16:39:39 +0200 Processing by GameRequestsController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests"[0m Rendered game_requests/index.html.erb within layouts/application (0.4ms) Rendered shared/_header.html.erb (0.8ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 11ms (Views: 8.9ms | ActiveRecord: 0.3ms)
Started GET “/game_requests/1/edit” for 127.0.0.1 at 2015-06-24 16:39:46 +0200 Processing by GameRequestsController#edit as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."id" = ? LIMIT 1[0m [["id", "1"]]
Rendered game_requests/edit.html.erb within layouts/application (6.0ms)
Rendered shared/_header.html.erb (1.4ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 20ms (Views: 17.5ms | ActiveRecord: 0.3ms)
Started GET “/game_requests/1/edit” for 127.0.0.1 at 2015-06-24 16:39:57 +0200 Processing by GameRequestsController#edit as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."id" = ? LIMIT 1[0m [["id", "1"]]
Rendered game_requests/edit.html.erb within layouts/application (1.3ms)
Rendered shared/_header.html.erb (0.8ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 12ms (Views: 9.9ms | ActiveRecord: 0.3ms)
Started GET “/game_requests/1/edit” for 127.0.0.1 at 2015-06-24 16:40:00 +0200 Processing by GameRequestsController#edit as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."id" = ? LIMIT 1[0m [["id", "1"]]
Rendered game_requests/edit.html.erb within layouts/application (1.8ms)
Rendered shared/_header.html.erb (1.8ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.3ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:40:04 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Meisters", "commit"=>"Check Requests"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Meisters'[0m
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Meisters'
Rendered game_requests/_check_requests.html.erb (1.2ms)
Rendered game_requests/check_requests.js.erb (2.0ms)
Completed 200 OK in 10ms (Views: 5.3ms | ActiveRecord: 0.9ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:40:10 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Dynasty Warriors Mobile", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
[1m[35mSQL (0.9ms)[0m INSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 24 Jun 2015 14:40:10 UTC +00:00], ["name", "Dynasty Warriors Mobile"], ["updated_at", Wed, 24 Jun 2015 14:40:10 UTC +00:00]]
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'
Rendered game_requests/_check_requests.html.erb (1.2ms)
Rendered game_requests/check_requests.js.erb (3.6ms)
Completed 200 OK in 16ms (Views: 7.1ms | ActiveRecord: 2.5ms)
Started GET “/game_requests” for 127.0.0.1 at 2015-06-24 16:40:13 +0200 Processing by GameRequestsController#index as HTML
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[35mGameRequest Load (0.3ms)[0m SELECT "game_requests".* FROM "game_requests" Rendered game_requests/index.html.erb within layouts/application (1.4ms) Rendered shared/_header.html.erb (0.8ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 19ms (Views: 12.1ms | ActiveRecord: 0.8ms)
Started GET “/game_requests/4/edit” for 127.0.0.1 at 2015-06-24 16:40:16 +0200 Processing by GameRequestsController#edit as HTML
Parameters: {"id"=>"4"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameRequest Load (0.3ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."id" = ? LIMIT 1 [["id", "4"]]
Rendered game_requests/edit.html.erb within layouts/application (2.4ms)
Rendered shared/_header.html.erb (0.8ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 18ms (Views: 14.1ms | ActiveRecord: 0.6ms)
Started GET “/game_requests/4/edit” for 127.0.0.1 at 2015-06-24 16:40:22 +0200 Processing by GameRequestsController#edit as HTML
Parameters: {"id"=>"4"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."id" = ? LIMIT 1 [["id", "4"]]
Rendered game_requests/edit.html.erb within layouts/application (2.5ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 17ms (Views: 14.6ms | ActiveRecord: 0.3ms)
Started GET “/games” for 127.0.0.1 at 2015-06-24 16:40:25 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.6ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (30.6ms) Rendered games/index.html.erb within layouts/application (39.3ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 134ms (Views: 49.0ms | ActiveRecord: 3.0ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 16:40:26 +0200 Processing by GameRequestsController#new as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143467493080 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:34)
Rendered game_requests/new.html.erb within layouts/application (1.8ms) Rendered shared/_header.html.erb (0.8ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 16ms (Views: 13.6ms | ActiveRecord: 0.2ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:40:30 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Dynasty Warriors Mobile", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'
[1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'[0m
Rendered game_requests/_check_requests.html.erb (1.6ms)
Rendered game_requests/check_requests.js.erb (3.0ms)
Completed 200 OK in 8ms (Views: 5.6ms | ActiveRecord: 0.6ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:40:34 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Dynasty Warriors Mobile", "commit"=>"Check Requests"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.7ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'
Rendered game_requests/_check_requests.html.erb (0.7ms)
Rendered game_requests/check_requests.js.erb (1.4ms)
Completed 200 OK in 10ms (Views: 3.7ms | ActiveRecord: 1.2ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:40:34 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Dynasty Warriors Mobile", "commit"=>"Check Requests"}
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'
[1m[36mGameRequest Load (0.4ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'[0m
Rendered game_requests/_check_requests.html.erb (2.1ms)
Rendered game_requests/check_requests.js.erb (3.5ms)
Completed 200 OK in 10ms (Views: 6.1ms | ActiveRecord: 0.9ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:41:43 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Dynasty Warriors Mobile", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'[0m
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'
Rendered game_requests/_check_requests.html.erb (87.3ms)
Rendered game_requests/check_requests.js.erb (88.9ms)
Completed 200 OK in 121ms (Views: 93.8ms | ActiveRecord: 1.2ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:41:43 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Dynasty Warriors Mobile", "commit"=>"Check Requests"}
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'[0m
Rendered game_requests/_check_requests.html.erb (0.9ms)
Rendered game_requests/check_requests.js.erb (1.8ms)
Completed 200 OK in 13ms (Views: 5.1ms | ActiveRecord: 0.8ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:41:44 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Dynasty Warriors Mobile", "commit"=>"Check Requests"}
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'
Rendered game_requests/_check_requests.html.erb (0.9ms)
Rendered game_requests/check_requests.js.erb (1.6ms)
Completed 200 OK in 9ms (Views: 4.2ms | ActiveRecord: 1.0ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:41:44 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Dynasty Warriors Mobile", "commit"=>"Check Requests"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'
[1m[36mGameRequest Load (0.3ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'[0m
Rendered game_requests/_check_requests.html.erb (2.3ms)
Rendered game_requests/check_requests.js.erb (3.3ms)
Completed 200 OK in 9ms (Views: 4.9ms | ActiveRecord: 0.7ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:41:44 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Dynasty Warriors Mobile", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'
Rendered game_requests/_check_requests.html.erb (0.7ms)
Rendered game_requests/check_requests.js.erb (1.3ms)
Completed 200 OK in 6ms (Views: 3.4ms | ActiveRecord: 0.5ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:41:45 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Dynasty Warriors Mobile", "commit"=>"Check Requests"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'
[1m[36mGameRequest Load (0.3ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'[0m
Rendered game_requests/_check_requests.html.erb (1.5ms)
Rendered game_requests/check_requests.js.erb (2.5ms)
Completed 200 OK in 12ms (Views: 5.9ms | ActiveRecord: 0.9ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:41:45 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Dynasty Warriors Mobile", "commit"=>"Check Requests"}
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'
Rendered game_requests/_check_requests.html.erb (0.8ms)
Rendered game_requests/check_requests.js.erb (1.5ms)
Completed 200 OK in 9ms (Views: 3.5ms | ActiveRecord: 1.1ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:41:46 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Dynasty Warriors Mobile", "commit"=>"Check Requests"}
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'[0m
Rendered game_requests/_check_requests.html.erb (0.8ms)
Rendered game_requests/check_requests.js.erb (1.5ms)
Completed 200 OK in 8ms (Views: 3.1ms | ActiveRecord: 0.6ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 16:44:21 +0200 Processing by GameRequestsController#new as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143508005300 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:23)
Rendered game_requests/new.html.erb within layouts/application (1.6ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 36ms (Views: 34.8ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:22 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:22 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:22 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:22 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:22 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:22 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:22 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:22 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:22 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:22 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:22 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:22 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:22 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:22 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:22 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:22 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:22 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:22 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:22 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:22 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:22 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:22 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:22 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:22 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:22 +0200
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:44:22 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Dynasty Warriors Mobile", "commit"=>"Check Requests"}
[1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'[0m
Rendered game_requests/_check_requests.html.erb (0.8ms)
Rendered game_requests/check_requests.js.erb (1.4ms)
Completed 200 OK in 11ms (Views: 3.4ms | ActiveRecord: 1.1ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:44:23 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Dynasty Warriors Mobile", "commit"=>"Check Requests"}
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'
Rendered game_requests/_check_requests.html.erb (0.7ms)
Rendered game_requests/check_requests.js.erb (1.4ms)
Completed 200 OK in 10ms (Views: 3.8ms | ActiveRecord: 1.1ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:44:30 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Dynasty Warriors Mobile", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'
[1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'[0m
Rendered game_requests/_check_requests.html.erb (0.9ms)
Rendered game_requests/check_requests.js.erb (1.8ms)
Completed 200 OK in 10ms (Views: 6.1ms | ActiveRecord: 0.5ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 16:44:31 +0200 Processing by GameRequestsController#new as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143508005300 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:23)
Rendered game_requests/new.html.erb within layouts/application (0.9ms) Rendered shared/_header.html.erb (0.9ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 11ms (Views: 9.2ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:31 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:31 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:31 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:31 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:31 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:31 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:31 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:31 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:31 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:31 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:31 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:31 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:31 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:31 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:31 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:31 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:31 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:31 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:31 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:31 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:31 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:31 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:31 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:31 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:31 +0200
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:44:32 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Dynasty Warriors Mobile", "commit"=>"Check Requests"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'[0m
Rendered game_requests/_check_requests.html.erb (0.8ms)
Rendered game_requests/check_requests.js.erb (1.4ms)
Completed 200 OK in 11ms (Views: 4.4ms | ActiveRecord: 1.0ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 16:44:55 +0200 Processing by GameRequestsController#new as HTML
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143508005300 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:23)
Rendered game_requests/new.html.erb within layouts/application (0.8ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 15ms (Views: 12.9ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:55 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:55 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:55 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:55 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:55 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:55 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:55 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:55 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:55 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:55 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:55 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:55 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:55 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:55 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 16:44:55 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:55 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:55 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:55 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:55 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:55 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:55 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:55 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:55 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:55 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 16:44:55 +0200
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:45:26 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Dynasty Warriors Mobile", "commit"=>"Check Requests"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'
[1m[36mGameRequest Load (0.3ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors Mobile'[0m
Rendered game_requests/_check_requests.html.erb (1.6ms)
Rendered game_requests/check_requests.js.erb (2.7ms)
Completed 200 OK in 12ms (Views: 6.8ms | ActiveRecord: 0.9ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:45:29 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Dynasty Warriors", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors'[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 24 Jun 2015 14:45:29 UTC +00:00], ["name", "Dynasty Warriors"], ["updated_at", Wed, 24 Jun 2015 14:45:29 UTC +00:00]]
[1m[35m (0.7ms)[0m commit transaction
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warriors'[0m
Rendered game_requests/_check_requests.html.erb (0.8ms)
Rendered game_requests/check_requests.js.erb (3.0ms)
Completed 200 OK in 13ms (Views: 6.6ms | ActiveRecord: 1.9ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:45:31 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Dynasty Warr", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warr'[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 24 Jun 2015 14:45:31 UTC +00:00], ["name", "Dynasty Warr"], ["updated_at", Wed, 24 Jun 2015 14:45:31 UTC +00:00]]
[1m[35m (0.9ms)[0m commit transaction
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty Warr'[0m
Rendered game_requests/_check_requests.html.erb (73.0ms)
Rendered game_requests/check_requests.js.erb (75.2ms)
Completed 200 OK in 87ms (Views: 79.1ms | ActiveRecord: 2.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:45:32 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Dynasty", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty'[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 24 Jun 2015 14:45:32 UTC +00:00], ["name", "Dynasty"], ["updated_at", Wed, 24 Jun 2015 14:45:32 UTC +00:00]]
[1m[35m (0.6ms)[0m commit transaction
[1m[36mGameRequest Load (0.3ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Dynasty'[0m
Rendered game_requests/_check_requests.html.erb (1.8ms)
Rendered game_requests/check_requests.js.erb (4.4ms)
Completed 200 OK in 13ms (Views: 8.0ms | ActiveRecord: 1.7ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:45:34 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Dyna", "commit"=>"Check Requests"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Dyna'[0m
[1m[35m (0.0ms)[0m begin transaction
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 24 Jun 2015 14:45:34 UTC +00:00], ["name", "Dyna"], ["updated_at", Wed, 24 Jun 2015 14:45:34 UTC +00:00]]
[1m[35m (0.7ms)[0m commit transaction
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Dyna'[0m
Rendered game_requests/_check_requests.html.erb (0.7ms)
Rendered game_requests/check_requests.js.erb (3.3ms)
Completed 200 OK in 12ms (Views: 6.6ms | ActiveRecord: 1.7ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:45:34 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Dyn", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Dyn'[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 24 Jun 2015 14:45:34 UTC +00:00], ["name", "Dyn"], ["updated_at", Wed, 24 Jun 2015 14:45:34 UTC +00:00]]
[1m[35m (0.8ms)[0m commit transaction
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Dyn'[0m
Rendered game_requests/_check_requests.html.erb (0.8ms)
Rendered game_requests/check_requests.js.erb (3.0ms)
Completed 200 OK in 12ms (Views: 6.7ms | ActiveRecord: 2.1ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:45:35 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Dy", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Dy'[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 24 Jun 2015 14:45:35 UTC +00:00], ["name", "Dy"], ["updated_at", Wed, 24 Jun 2015 14:45:35 UTC +00:00]]
[1m[35m (0.7ms)[0m commit transaction
[1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Dy'[0m
Rendered game_requests/_check_requests.html.erb (0.9ms)
Rendered game_requests/check_requests.js.erb (3.6ms)
Completed 200 OK in 12ms (Views: 7.5ms | ActiveRecord: 1.6ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:45:35 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"D", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'D'[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
[1m[35mGameRequest Load (0.5ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'D'
Rendered game_requests/_check_requests.html.erb (1.6ms)
Rendered game_requests/check_requests.js.erb (4.6ms)
Completed 200 OK in 14ms (Views: 8.2ms | ActiveRecord: 1.1ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:45:35 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = ''
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35m (0.1ms)[0m rollback transaction
[1m[36mGameRequest Load (0.3ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = ''[0m
Rendered game_requests/_check_requests.html.erb (0.8ms)
Rendered game_requests/check_requests.js.erb (3.6ms)
Completed 200 OK in 15ms (Views: 9.0ms | ActiveRecord: 0.9ms)
Started GET “/game_requests” for 127.0.0.1 at 2015-06-24 16:45:42 +0200 Processing by GameRequestsController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests"[0m Rendered game_requests/index.html.erb within layouts/application (1.1ms) Rendered shared/_header.html.erb (0.9ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 12ms (Views: 9.6ms | ActiveRecord: 0.3ms)
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Migrating to AddRequestsTodayToUser (20150624144700)
[1m[35m (0.1ms)[0m begin transaction
[1m[36m (0.7ms)[0m [1mALTER TABLE "users" ADD "requests_today" integer DEFAULT 0[0m
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150624144700"]]
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
Started GET “/game_requests” for 127.0.0.1 at 2015-06-24 16:48:23 +0200
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
Processing by GameRequestsController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" Rendered game_requests/index.html.erb within layouts/application (3.8ms) Rendered shared/_header.html.erb (0.9ms) Rendered shared/_footer.html.erb (48.7ms)
Completed 200 OK in 87ms (Views: 63.2ms | ActiveRecord: 0.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 16:48:23 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 16:48:23 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 16:48:23 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 16:48:23 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 16:48:23 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 16:48:23 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 16:48:23 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 16:48:23 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 16:48:23 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 16:48:23 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 16:48:23 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 16:48:23 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 16:48:23 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 16:48:23 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 16:48:23 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 16:48:23 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 16:48:23 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 16:48:23 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 16:48:23 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 16:48:23 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 16:48:23 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 16:48:23 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 16:48:23 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 16:48:23 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 16:48:23 +0200
Started GET “/users” for 127.0.0.1 at 2015-06-24 16:48:27 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (11.1ms) Rendered shared/_header.html.erb (5.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 33ms (Views: 28.6ms | ActiveRecord: 0.8ms)
Started GET “/” for 127.0.0.1 at 2015-06-24 16:48:30 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (21.5ms) [1m[36mGame Load (0.5ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (7.4ms) Rendered widgets/_advertisement.html.erb (0.4ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (4.9ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143509632480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (28.8ms) Rendered widgets/_advertisement.html.erb (0.2ms) Rendered welcome/index.html.erb within layouts/application (69.7ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (4.4ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 95ms (Views: 82.3ms | ActiveRecord: 5.4ms)
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-24 16:48:30 +0200
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Migrating to ChangeDailyRequestsFromUser (20150624144937)
[1m[35m (0.1ms)[0m begin transaction
[1m[36m (0.5ms)[0m [1mCREATE TEMPORARY TABLE "ausers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255), "created_at" datetime, "updated_at" datetime, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "admin" varchar(255) DEFAULT 'f', "coins" integer DEFAULT 0, "requests_today" integer DEFAULT 0) [0m
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "tindex_ausers_on_reset_password_token" ON "ausers" ("reset_password_token")
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "tindex_ausers_on_email" ON "ausers" ("email")[0m
[1m[35m (0.1ms)[0m CREATE INDEX "tindex_ausers_on_nickname" ON "ausers" ("nickname")
[1m[36m (0.2ms)[0m [1mSELECT * FROM "users"[0m
[1m[35m (0.1ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (1, 'admin', '2015-06-20 14:46:49.640171', '2015-06-20 14:47:05.489433', 'admin@example.com', '$2a$10$B53N.yxPW63ZfXPH40qDo.EUivo/Bl70vjR6Wby4SolsnNqAV53U2', NULL, NULL, '2015-06-20 14:47:05.414343', 1, '2015-06-20 14:47:05.486804', '2015-06-20 14:47:05.486804', '127.0.0.1', '127.0.0.1', 't', 0, 0)
[1m[36m (0.1ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (2, 'alanis_davis', '2015-06-20 14:46:49.704481', '2015-06-20 14:46:49.704481', 'creola_connelly@yundtharris.org', '$2a$10$lhdwJoouoihRbzvGBNka3ucGjOg9EZycA/EJK4BoQESECteNGLpAS', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (3, 'donna.klein', '2015-06-20 14:46:49.770155', '2015-06-20 14:46:49.770155', 'delpha@mills.com', '$2a$10$iI4czb.4Yt6Z/Bgu1XcAUeL6eTmG27A1XdUjKChYJt8p/KeOoVfZi', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (4, 'veronica_donnelly', '2015-06-20 14:46:49.834725', '2015-06-20 14:46:49.834725', 'lenna.luettgen@bruen.org', '$2a$10$DNQNNstHuqMrMvlm2Gx8d.z5Ld4MrxFPC4WZSPpZNbPe4mnWV5mfu', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (5, 'haie', '2015-06-20 14:46:49.900149', '2015-06-20 14:46:49.900149', 'kara.willms@kemmer.com', '$2a$10$BfxTusRU.fNgvoa/DFwhW.NXNmzqrDXAMwh1CjL3jBPHAOpnKPabW', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (6, 'faye', '2015-06-20 14:46:49.965872', '2015-06-20 14:46:49.965872', 'damian_dooley@barton.org', '$2a$10$6jVVLpFmZS2S2JoiPdGYcOK9WxeQRPyyluUtF4S2hP2dBrMnHdHtS', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (7, 'orland.ryan', '2015-06-20 14:46:50.031584', '2015-06-20 14:46:50.031584', 'leo@torphyokeefe.name', '$2a$10$X8.IeP.yUzGn4U.zVP266.RsSUysHv5dK8pJCx5OT8hXXxjJMX.U2', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (8, 'forrest_streich', '2015-06-20 14:46:50.096878', '2015-06-20 14:46:50.096878', 'jamaal_schmeler@bergnaum.org', '$2a$10$IwWZzUEuHMPz46H2MZWQtOBnEK3ZCwHQpgCongtTC6zRpLAVl53Ry', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (9, 'simone_weinat', '2015-06-20 14:46:50.158954', '2015-06-20 14:46:50.158954', 'alek@oconner.name', '$2a$10$YpLIpPP6dIgB0o9LQ1y1HenOVd0Exkzgsi5KB8kHxNXLJDw9R8uMK', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (10, 'hester', '2015-06-20 14:46:50.229465', '2015-06-20 14:46:50.229465', 'roselyn@wilderman.name', '$2a$10$eT88V0Qn2/yJbgtT4dn4S.smdlPvRiJEL6J9OkavsuK7uKEr0ToZ6', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (11, 'theron.reichel', '2015-06-20 14:46:50.308003', '2015-06-20 14:46:50.308003', 'toney_brekke@altenwerthzulauf.com', '$2a$10$nYjpErS8oU3I1e9NzuVqBeEJBCsw..vsaR6M.cyg5/ZEKMGFXif56', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (12, 'conor.heaney', '2015-06-20 14:46:50.374953', '2015-06-20 14:46:50.374953', 'laurie@kuhn.net', '$2a$10$rRzgJ/WdOcg/6XO3qMFHg.0/r/l5G0KqqCMJ9/eY.0Tj7US4DSwgW', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (13, 'hank', '2015-06-20 14:46:50.439888', '2015-06-20 14:46:50.439888', 'sophia.bednar@west.biz', '$2a$10$3K6pWZVuD1ZmhY.y11XXK.dwaB/Im9YjwF8x.xHvRj7oy1BnBADHa', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (14, 'aniyah', '2015-06-20 14:46:50.501999', '2015-06-20 14:46:50.501999', 'remington@corkery.net', '$2a$10$vLmxJiRGRole1wVFyXYP4.5zBJ7kclw8FMHEyiSlpy939DiRzteDu', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (15, 'daron', '2015-06-20 14:46:50.564257', '2015-06-20 14:46:50.564257', 'francis@stanton.name', '$2a$10$.E/qjiW14jFcnJmOpKKdR.M.voCGU.wCqD/96ka1omPTub2Yf8sy.', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (16, 'winona_schowalter', '2015-06-20 14:46:50.626473', '2015-06-20 14:46:50.626473', 'charlotte@pfannerstill.com', '$2a$10$paHtYSzYDOLJ.QAY90q0IeAxvgylFjeHGESsATxLfxyeYIF3rcNVy', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (17, 'braulio', '2015-06-20 14:46:50.688991', '2015-06-20 14:46:50.688991', 'jaqueline_hermiston@littel.org', '$2a$10$PCNI/P5itMzCI4YbEYos5eLr/A6OazVTnLMB4i3ciKhSm6AjTc46a', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (18, 'caleigh', '2015-06-20 14:46:50.755938', '2015-06-20 14:46:50.755938', 'claude@weimannpouros.name', '$2a$10$Uo14NPLh2iGSslb8eF5Iqebz9Fb2SnxhOcUTQuhy0cjUOtDh/RWzW', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (19, 'brandy_gulgowski', '2015-06-20 14:46:50.821378', '2015-06-20 14:46:50.821378', 'rebeka.shields@quigley.org', '$2a$10$7O8tnBWA7bQsGEAK3RjbBuWUz8LO7S2AiMz0VsB0AcmwN45RC6AJG', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (20, 'theresia', '2015-06-20 14:46:50.884003', '2015-06-20 14:46:50.884003', 'trycia.hodkiewicz@gorczany.info', '$2a$10$F5nZUWZns7EQkDiQ.OvmNO940usjc6ikGwPS0rgWrC9/K/l0qb/O.', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (21, 'earnestine', '2015-06-20 14:46:50.949884', '2015-06-20 14:46:50.949884', 'hazle@lehner.com', '$2a$10$nmH2Xw3T//C7Zsh2buVaZuAie/5EyYnQmMbpyETj7lHt.0qdyzOVm', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (22, 'arvilla', '2015-06-20 14:46:51.015462', '2015-06-20 14:46:51.015462', 'josefina@schmidt.com', '$2a$10$Pmqif5J5BCvTrWFq2TzV8eWnmyBVck7ihamBdm.wPSbDaPKpv3pnm', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (23, 'jane.crist', '2015-06-20 14:46:51.078132', '2015-06-20 14:46:51.078132', 'amalia.breitenberg@glover.name', '$2a$10$C8gjtEzavnhpkOgzlNJ0L.ICciaNhDa5bGGXGsyfAHGZuELZsHnsi', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.1ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (24, 'dylan.wyman', '2015-06-20 14:46:51.140519', '2015-06-20 14:46:51.140519', 'noel.ledner@raudickens.info', '$2a$10$7aw8Z8d6b2vfX5GGRLG20OJhtVXmUJbz8vtCcQ1dMcA0ppGqlPAbO', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (25, 'harold', '2015-06-20 14:46:51.205868', '2015-06-20 14:46:51.205868', 'bryce_volkman@boylepowlowski.biz', '$2a$10$zMvJU4xc5w/0xG5bTHfvNub9quBwdVAxsR7h/TNpcS8rq43W7.53.', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (26, 'lois.rogahn', '2015-06-20 14:46:51.271467', '2015-06-20 14:46:51.271467', 'colten.goyette@west.org', '$2a$10$7IYyF9bzeZnlgfmC88jLLuMzIHwEA9h7MGEgDHWdyjanD2cZoaASe', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (27, 'jayson_ko', '2015-06-20 14:46:51.338006', '2015-06-20 14:46:51.338006', 'robb@harris.org', '$2a$10$x/Vu4hvJFNWDioQLrv6Vke6QZmirTeDrxV48y5TVeP9gyeh0wBdT.', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (28, 'cora', '2015-06-20 14:46:51.400576', '2015-06-20 14:46:51.400576', 'kennith_bernier@dietrich.info', '$2a$10$7cxUqNUfMUeEogtpqxpOSOOK6t2VLumo69pb/pDNEUhzBXg.Kv8j6', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (29, 'irma.mann', '2015-06-20 14:46:51.469495', '2015-06-20 14:46:51.469495', 'coleman@hettingerstiedemann.net', '$2a$10$/xE2AlCeXPSiinfQNmayTOc6dAb2T1qSRkM9BozmU9Mmwr/Fj7HWK', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (30, 'hanna', '2015-06-20 14:46:51.534864', '2015-06-20 14:46:51.534864', 'melisa@johnsongrant.info', '$2a$10$mUUdnm1zVSwHSWWQLGpkqO7B0PWX6xwPUfDWJAbm/fD/.o3n.u7/W', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (31, 'martine.cain', '2015-06-20 14:46:51.597331', '2015-06-20 14:46:51.597331', 'chase@oberbrunnerwilkinson.biz', '$2a$10$o9lAUPHU2THEMEgempXBbOZjA1QUecQMabyYY77Otg8JmjXW/e0JG', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (32, 'theron', '2015-06-20 14:46:51.663024', '2015-06-20 14:46:51.663024', 'afton.emard@damorethiel.net', '$2a$10$PlQclU/jDgkNpBUN0nxMOeLYuTIt2vK2T.Zt1b5UCzTM2TirtQXB.', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (33, 'kaylie_schimmel', '2015-06-20 14:46:51.732998', '2015-06-20 14:46:51.732998', 'mona@ziemann.info', '$2a$10$j5MbfJQFdm7Lte9udhDTSOlr2ilOIFDvGnJpAkEVCKDltfW7SXgdu', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (34, 'clair.rempel', '2015-06-20 14:46:51.798407', '2015-06-20 14:46:51.798407', 'rosemarie.koelpin@nienow.org', '$2a$10$Z1k4Sl.uHtqN887kOWbAcen47K1zSWE0Wb4RRBB3GxqNE8Pa0WQhG', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (35, 'teresa', '2015-06-20 14:46:51.870265', '2015-06-20 14:46:51.870265', 'reed@borer.biz', '$2a$10$6.lA4n3yabvjPI/1CQuBqeKZq.P0.PziqIsjXmf1qyZ2/JeAfU0IW', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (36, 'brenda', '2015-06-20 14:46:51.938659', '2015-06-20 14:46:51.938659', 'harley_huel@reilly.name', '$2a$10$HYmEaFmWDIZndJqDhorlEOrk9vTIyc7UiZBjB/rTnQCHB6ayLk4qC', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (37, 'sidney_predovic', '2015-06-20 14:46:52.004438', '2015-06-20 14:46:52.004438', 'maria@deckow.biz', '$2a$10$yUXcuEaA8Ujzasv6G/jzwOPV0z/odmZOPDg5uHeutzfgglAPrOaF6', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (38, 'isaac', '2015-06-20 14:46:52.072570', '2015-06-20 14:46:52.072570', 'harvey_yundt@dubuque.com', '$2a$10$WrdathYBcpGCOpHzcPCfCOoqie6JKtT2BI.j9yV.6fuR.In3.jNDq', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (39, 'ubaldo_stracke', '2015-06-20 14:46:52.135178', '2015-06-20 14:46:52.135178', 'laron@berge.biz', '$2a$10$iwM4jjvsrxL60E1/wbkvD.mrSYMuXr6GsEJV1DCmgrrNl/M8LI1nq', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (40, 'loren', '2015-06-20 14:46:52.197575', '2015-06-20 14:46:52.197575', 'neva@bergstrom.com', '$2a$10$QiGvjkdSinbNjm616ckY/.1dPCDg01qJwCwTh5reylkECJTXaDI6y', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (41, 'addison', '2015-06-20 14:46:52.263264', '2015-06-20 14:46:52.263264', 'amelia@pricewaelchi.biz', '$2a$10$7ZO2OHsMEmKLA3OSNNbC1emcr3My0kuIOA3vVZfpEd.unZfFBrH6m', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (42, 'stephen.jast', '2015-06-20 14:46:52.327821', '2015-06-20 14:46:52.327821', 'lauryn@berniercollier.info', '$2a$10$MGd0gQ2HcphaWQPVlChEaO7q9ifsFdJWWnY/lUtakWZmOwHQ3aHvK', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (43, 'elliot.swaniawski', '2015-06-20 14:46:52.395982', '2015-06-20 14:46:52.395982', 'rosamond@kohler.name', '$2a$10$s1tmbkOVPK0m0T/FRSJd1OtYaBTMKf.11177No6tg7oqvJL/U8Dse', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (44, 'florence_gleichner', '2015-06-20 14:46:52.461647', '2015-06-20 14:46:52.461647', 'lenore@daniel.info', '$2a$10$maqgK85ASDhANulCuREDbu4VXccjNW.uh7.xdCsaSPm/TV5qVfFBi', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (45, 'mayra_schiller', '2015-06-20 14:46:52.527510', '2015-06-20 14:46:52.527510', 'candida@king.com', '$2a$10$fTmSLLEdAjmKk4F9A3LvhOWgAA4IKXoIZCey2BqvFHFIdHLc5Hm7.', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (46, 'dorian', '2015-06-20 14:46:52.590127', '2015-06-20 14:46:52.590127', 'howard_graham@heller.com', '$2a$10$0YGNMprWUCkSJFUS.iHoW./i4zoqE/mp0swW9NKBawx5R84zePVcu', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (47, 'lorenzo.ohara', '2015-06-20 14:46:52.658596', '2015-06-20 14:46:52.658596', 'keira_towne@kohler.info', '$2a$10$B79nSoBnL4ZWebj9c9AlOeH40NgwyAIOBI2W9e.6anYwC2oTmMcK6', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (48, 'pedro_schuster', '2015-06-20 14:46:52.721161', '2015-06-20 14:46:52.721161', 'breanna@lockmanswaniawski.com', '$2a$10$kuGNe3.29fUeGVLtBopveueHlCONEsHcvHpNGlHDE1fQKPsZgG7DS', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (49, 'gilbert', '2015-06-20 14:46:52.783588', '2015-06-20 14:46:52.783588', 'maiya@koelpin.com', '$2a$10$RW3zYnfV.RlEQypCe7o2gOASkAVHT/KA9eOcf5199tx1jjxrVQpd2', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (50, 'clyde', '2015-06-20 14:46:52.849062', '2015-06-20 14:46:52.849062', 'pamela.mitchell@hintz.biz', '$2a$10$zsgrTP8z7eBZyq.zvhgIA.stdFXKSuqv3oDGLbLMK7q9ZL5//5zPG', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (51, 'michale.simonis', '2015-06-20 14:46:52.915678', '2015-06-20 14:46:52.915678', 'eli_blanda@kiehn.info', '$2a$10$3ZlfUFKYzU4H8DsdVmadj.rrRPUraw2EQx4TiF1bWr8I04BOSkcjK', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (52, 'peter', '2015-06-24 12:59:49.472133', '2015-06-24 12:59:49.481119', 'peter@son.de', '$2a$10$O1XsP2iZSs5k69GdtHVobuz3rSWBDAS7oo2qppIniP2oPtpsy2VKW', NULL, NULL, NULL, 1, '2015-06-24 12:59:49.479906', '2015-06-24 12:59:49.479906', '127.0.0.1', '127.0.0.1', 'f', 0, 0)[0m
[1m[35m (0.3ms)[0m DROP TABLE "users"
[1m[36m (0.1ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255), "created_at" datetime, "updated_at" datetime, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "admin" varchar(255) DEFAULT 'f', "coins" integer DEFAULT 0, "requests_today" integer DEFAULT 2) [0m
[1m[35m (0.1ms)[0m CREATE INDEX "index_users_on_nickname" ON "users" ("nickname")
[1m[36m (0.3ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")[0m
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
[1m[36m (0.2ms)[0m [1mSELECT * FROM "ausers"[0m
[1m[35m (0.1ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (1, 'admin', '2015-06-20 14:46:49.640171', '2015-06-20 14:47:05.489433', 'admin@example.com', '$2a$10$B53N.yxPW63ZfXPH40qDo.EUivo/Bl70vjR6Wby4SolsnNqAV53U2', NULL, NULL, '2015-06-20 14:47:05.414343', 1, '2015-06-20 14:47:05.486804', '2015-06-20 14:47:05.486804', '127.0.0.1', '127.0.0.1', 't', 0, 0)
[1m[36m (0.1ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (2, 'alanis_davis', '2015-06-20 14:46:49.704481', '2015-06-20 14:46:49.704481', 'creola_connelly@yundtharris.org', '$2a$10$lhdwJoouoihRbzvGBNka3ucGjOg9EZycA/EJK4BoQESECteNGLpAS', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (3, 'donna.klein', '2015-06-20 14:46:49.770155', '2015-06-20 14:46:49.770155', 'delpha@mills.com', '$2a$10$iI4czb.4Yt6Z/Bgu1XcAUeL6eTmG27A1XdUjKChYJt8p/KeOoVfZi', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.1ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (4, 'veronica_donnelly', '2015-06-20 14:46:49.834725', '2015-06-20 14:46:49.834725', 'lenna.luettgen@bruen.org', '$2a$10$DNQNNstHuqMrMvlm2Gx8d.z5Ld4MrxFPC4WZSPpZNbPe4mnWV5mfu', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (5, 'haie', '2015-06-20 14:46:49.900149', '2015-06-20 14:46:49.900149', 'kara.willms@kemmer.com', '$2a$10$BfxTusRU.fNgvoa/DFwhW.NXNmzqrDXAMwh1CjL3jBPHAOpnKPabW', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (6, 'faye', '2015-06-20 14:46:49.965872', '2015-06-20 14:46:49.965872', 'damian_dooley@barton.org', '$2a$10$6jVVLpFmZS2S2JoiPdGYcOK9WxeQRPyyluUtF4S2hP2dBrMnHdHtS', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (7, 'orland.ryan', '2015-06-20 14:46:50.031584', '2015-06-20 14:46:50.031584', 'leo@torphyokeefe.name', '$2a$10$X8.IeP.yUzGn4U.zVP266.RsSUysHv5dK8pJCx5OT8hXXxjJMX.U2', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (8, 'forrest_streich', '2015-06-20 14:46:50.096878', '2015-06-20 14:46:50.096878', 'jamaal_schmeler@bergnaum.org', '$2a$10$IwWZzUEuHMPz46H2MZWQtOBnEK3ZCwHQpgCongtTC6zRpLAVl53Ry', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (9, 'simone_weinat', '2015-06-20 14:46:50.158954', '2015-06-20 14:46:50.158954', 'alek@oconner.name', '$2a$10$YpLIpPP6dIgB0o9LQ1y1HenOVd0Exkzgsi5KB8kHxNXLJDw9R8uMK', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (10, 'hester', '2015-06-20 14:46:50.229465', '2015-06-20 14:46:50.229465', 'roselyn@wilderman.name', '$2a$10$eT88V0Qn2/yJbgtT4dn4S.smdlPvRiJEL6J9OkavsuK7uKEr0ToZ6', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (11, 'theron.reichel', '2015-06-20 14:46:50.308003', '2015-06-20 14:46:50.308003', 'toney_brekke@altenwerthzulauf.com', '$2a$10$nYjpErS8oU3I1e9NzuVqBeEJBCsw..vsaR6M.cyg5/ZEKMGFXif56', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (12, 'conor.heaney', '2015-06-20 14:46:50.374953', '2015-06-20 14:46:50.374953', 'laurie@kuhn.net', '$2a$10$rRzgJ/WdOcg/6XO3qMFHg.0/r/l5G0KqqCMJ9/eY.0Tj7US4DSwgW', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (13, 'hank', '2015-06-20 14:46:50.439888', '2015-06-20 14:46:50.439888', 'sophia.bednar@west.biz', '$2a$10$3K6pWZVuD1ZmhY.y11XXK.dwaB/Im9YjwF8x.xHvRj7oy1BnBADHa', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (14, 'aniyah', '2015-06-20 14:46:50.501999', '2015-06-20 14:46:50.501999', 'remington@corkery.net', '$2a$10$vLmxJiRGRole1wVFyXYP4.5zBJ7kclw8FMHEyiSlpy939DiRzteDu', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (15, 'daron', '2015-06-20 14:46:50.564257', '2015-06-20 14:46:50.564257', 'francis@stanton.name', '$2a$10$.E/qjiW14jFcnJmOpKKdR.M.voCGU.wCqD/96ka1omPTub2Yf8sy.', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (16, 'winona_schowalter', '2015-06-20 14:46:50.626473', '2015-06-20 14:46:50.626473', 'charlotte@pfannerstill.com', '$2a$10$paHtYSzYDOLJ.QAY90q0IeAxvgylFjeHGESsATxLfxyeYIF3rcNVy', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (17, 'braulio', '2015-06-20 14:46:50.688991', '2015-06-20 14:46:50.688991', 'jaqueline_hermiston@littel.org', '$2a$10$PCNI/P5itMzCI4YbEYos5eLr/A6OazVTnLMB4i3ciKhSm6AjTc46a', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (18, 'caleigh', '2015-06-20 14:46:50.755938', '2015-06-20 14:46:50.755938', 'claude@weimannpouros.name', '$2a$10$Uo14NPLh2iGSslb8eF5Iqebz9Fb2SnxhOcUTQuhy0cjUOtDh/RWzW', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (19, 'brandy_gulgowski', '2015-06-20 14:46:50.821378', '2015-06-20 14:46:50.821378', 'rebeka.shields@quigley.org', '$2a$10$7O8tnBWA7bQsGEAK3RjbBuWUz8LO7S2AiMz0VsB0AcmwN45RC6AJG', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (20, 'theresia', '2015-06-20 14:46:50.884003', '2015-06-20 14:46:50.884003', 'trycia.hodkiewicz@gorczany.info', '$2a$10$F5nZUWZns7EQkDiQ.OvmNO940usjc6ikGwPS0rgWrC9/K/l0qb/O.', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (21, 'earnestine', '2015-06-20 14:46:50.949884', '2015-06-20 14:46:50.949884', 'hazle@lehner.com', '$2a$10$nmH2Xw3T//C7Zsh2buVaZuAie/5EyYnQmMbpyETj7lHt.0qdyzOVm', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (22, 'arvilla', '2015-06-20 14:46:51.015462', '2015-06-20 14:46:51.015462', 'josefina@schmidt.com', '$2a$10$Pmqif5J5BCvTrWFq2TzV8eWnmyBVck7ihamBdm.wPSbDaPKpv3pnm', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (23, 'jane.crist', '2015-06-20 14:46:51.078132', '2015-06-20 14:46:51.078132', 'amalia.breitenberg@glover.name', '$2a$10$C8gjtEzavnhpkOgzlNJ0L.ICciaNhDa5bGGXGsyfAHGZuELZsHnsi', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.1ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (24, 'dylan.wyman', '2015-06-20 14:46:51.140519', '2015-06-20 14:46:51.140519', 'noel.ledner@raudickens.info', '$2a$10$7aw8Z8d6b2vfX5GGRLG20OJhtVXmUJbz8vtCcQ1dMcA0ppGqlPAbO', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (25, 'harold', '2015-06-20 14:46:51.205868', '2015-06-20 14:46:51.205868', 'bryce_volkman@boylepowlowski.biz', '$2a$10$zMvJU4xc5w/0xG5bTHfvNub9quBwdVAxsR7h/TNpcS8rq43W7.53.', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (26, 'lois.rogahn', '2015-06-20 14:46:51.271467', '2015-06-20 14:46:51.271467', 'colten.goyette@west.org', '$2a$10$7IYyF9bzeZnlgfmC88jLLuMzIHwEA9h7MGEgDHWdyjanD2cZoaASe', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (27, 'jayson_ko', '2015-06-20 14:46:51.338006', '2015-06-20 14:46:51.338006', 'robb@harris.org', '$2a$10$x/Vu4hvJFNWDioQLrv6Vke6QZmirTeDrxV48y5TVeP9gyeh0wBdT.', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (28, 'cora', '2015-06-20 14:46:51.400576', '2015-06-20 14:46:51.400576', 'kennith_bernier@dietrich.info', '$2a$10$7cxUqNUfMUeEogtpqxpOSOOK6t2VLumo69pb/pDNEUhzBXg.Kv8j6', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (29, 'irma.mann', '2015-06-20 14:46:51.469495', '2015-06-20 14:46:51.469495', 'coleman@hettingerstiedemann.net', '$2a$10$/xE2AlCeXPSiinfQNmayTOc6dAb2T1qSRkM9BozmU9Mmwr/Fj7HWK', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (30, 'hanna', '2015-06-20 14:46:51.534864', '2015-06-20 14:46:51.534864', 'melisa@johnsongrant.info', '$2a$10$mUUdnm1zVSwHSWWQLGpkqO7B0PWX6xwPUfDWJAbm/fD/.o3n.u7/W', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (31, 'martine.cain', '2015-06-20 14:46:51.597331', '2015-06-20 14:46:51.597331', 'chase@oberbrunnerwilkinson.biz', '$2a$10$o9lAUPHU2THEMEgempXBbOZjA1QUecQMabyYY77Otg8JmjXW/e0JG', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (32, 'theron', '2015-06-20 14:46:51.663024', '2015-06-20 14:46:51.663024', 'afton.emard@damorethiel.net', '$2a$10$PlQclU/jDgkNpBUN0nxMOeLYuTIt2vK2T.Zt1b5UCzTM2TirtQXB.', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (33, 'kaylie_schimmel', '2015-06-20 14:46:51.732998', '2015-06-20 14:46:51.732998', 'mona@ziemann.info', '$2a$10$j5MbfJQFdm7Lte9udhDTSOlr2ilOIFDvGnJpAkEVCKDltfW7SXgdu', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (34, 'clair.rempel', '2015-06-20 14:46:51.798407', '2015-06-20 14:46:51.798407', 'rosemarie.koelpin@nienow.org', '$2a$10$Z1k4Sl.uHtqN887kOWbAcen47K1zSWE0Wb4RRBB3GxqNE8Pa0WQhG', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (35, 'teresa', '2015-06-20 14:46:51.870265', '2015-06-20 14:46:51.870265', 'reed@borer.biz', '$2a$10$6.lA4n3yabvjPI/1CQuBqeKZq.P0.PziqIsjXmf1qyZ2/JeAfU0IW', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (36, 'brenda', '2015-06-20 14:46:51.938659', '2015-06-20 14:46:51.938659', 'harley_huel@reilly.name', '$2a$10$HYmEaFmWDIZndJqDhorlEOrk9vTIyc7UiZBjB/rTnQCHB6ayLk4qC', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (37, 'sidney_predovic', '2015-06-20 14:46:52.004438', '2015-06-20 14:46:52.004438', 'maria@deckow.biz', '$2a$10$yUXcuEaA8Ujzasv6G/jzwOPV0z/odmZOPDg5uHeutzfgglAPrOaF6', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (38, 'isaac', '2015-06-20 14:46:52.072570', '2015-06-20 14:46:52.072570', 'harvey_yundt@dubuque.com', '$2a$10$WrdathYBcpGCOpHzcPCfCOoqie6JKtT2BI.j9yV.6fuR.In3.jNDq', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (39, 'ubaldo_stracke', '2015-06-20 14:46:52.135178', '2015-06-20 14:46:52.135178', 'laron@berge.biz', '$2a$10$iwM4jjvsrxL60E1/wbkvD.mrSYMuXr6GsEJV1DCmgrrNl/M8LI1nq', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (40, 'loren', '2015-06-20 14:46:52.197575', '2015-06-20 14:46:52.197575', 'neva@bergstrom.com', '$2a$10$QiGvjkdSinbNjm616ckY/.1dPCDg01qJwCwTh5reylkECJTXaDI6y', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (41, 'addison', '2015-06-20 14:46:52.263264', '2015-06-20 14:46:52.263264', 'amelia@pricewaelchi.biz', '$2a$10$7ZO2OHsMEmKLA3OSNNbC1emcr3My0kuIOA3vVZfpEd.unZfFBrH6m', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (42, 'stephen.jast', '2015-06-20 14:46:52.327821', '2015-06-20 14:46:52.327821', 'lauryn@berniercollier.info', '$2a$10$MGd0gQ2HcphaWQPVlChEaO7q9ifsFdJWWnY/lUtakWZmOwHQ3aHvK', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (43, 'elliot.swaniawski', '2015-06-20 14:46:52.395982', '2015-06-20 14:46:52.395982', 'rosamond@kohler.name', '$2a$10$s1tmbkOVPK0m0T/FRSJd1OtYaBTMKf.11177No6tg7oqvJL/U8Dse', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (44, 'florence_gleichner', '2015-06-20 14:46:52.461647', '2015-06-20 14:46:52.461647', 'lenore@daniel.info', '$2a$10$maqgK85ASDhANulCuREDbu4VXccjNW.uh7.xdCsaSPm/TV5qVfFBi', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (45, 'mayra_schiller', '2015-06-20 14:46:52.527510', '2015-06-20 14:46:52.527510', 'candida@king.com', '$2a$10$fTmSLLEdAjmKk4F9A3LvhOWgAA4IKXoIZCey2BqvFHFIdHLc5Hm7.', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (46, 'dorian', '2015-06-20 14:46:52.590127', '2015-06-20 14:46:52.590127', 'howard_graham@heller.com', '$2a$10$0YGNMprWUCkSJFUS.iHoW./i4zoqE/mp0swW9NKBawx5R84zePVcu', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (47, 'lorenzo.ohara', '2015-06-20 14:46:52.658596', '2015-06-20 14:46:52.658596', 'keira_towne@kohler.info', '$2a$10$B79nSoBnL4ZWebj9c9AlOeH40NgwyAIOBI2W9e.6anYwC2oTmMcK6', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (48, 'pedro_schuster', '2015-06-20 14:46:52.721161', '2015-06-20 14:46:52.721161', 'breanna@lockmanswaniawski.com', '$2a$10$kuGNe3.29fUeGVLtBopveueHlCONEsHcvHpNGlHDE1fQKPsZgG7DS', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (49, 'gilbert', '2015-06-20 14:46:52.783588', '2015-06-20 14:46:52.783588', 'maiya@koelpin.com', '$2a$10$RW3zYnfV.RlEQypCe7o2gOASkAVHT/KA9eOcf5199tx1jjxrVQpd2', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (50, 'clyde', '2015-06-20 14:46:52.849062', '2015-06-20 14:46:52.849062', 'pamela.mitchell@hintz.biz', '$2a$10$zsgrTP8z7eBZyq.zvhgIA.stdFXKSuqv3oDGLbLMK7q9ZL5//5zPG', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (51, 'michale.simonis', '2015-06-20 14:46:52.915678', '2015-06-20 14:46:52.915678', 'eli_blanda@kiehn.info', '$2a$10$3ZlfUFKYzU4H8DsdVmadj.rrRPUraw2EQx4TiF1bWr8I04BOSkcjK', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today") VALUES (52, 'peter', '2015-06-24 12:59:49.472133', '2015-06-24 12:59:49.481119', 'peter@son.de', '$2a$10$O1XsP2iZSs5k69GdtHVobuz3rSWBDAS7oo2qppIniP2oPtpsy2VKW', NULL, NULL, NULL, 1, '2015-06-24 12:59:49.479906', '2015-06-24 12:59:49.479906', '127.0.0.1', '127.0.0.1', 'f', 0, 0)[0m
[1m[35m (0.2ms)[0m DROP TABLE "ausers"
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150624144937"]]
[1m[35m (1.9ms)[0m commit transaction
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Started GET “/games” for 127.0.0.1 at 2015-06-24 16:54:11 +0200
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (33.3ms) Rendered games/index.html.erb within layouts/application (36.2ms) Rendered shared/_header.html.erb (0.9ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 55ms (Views: 43.9ms | ActiveRecord: 2.1ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 16:54:12 +0200 Processing by GameRequestsController#new as HTML
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143508450740 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:23)
Rendered game_requests/new.html.erb within layouts/application (1.6ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 28ms (Views: 16.1ms | ActiveRecord: 1.2ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:54:14 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"", "commit"=>"Check Requests"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = ''[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
[1m[35mGameRequest Load (0.7ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = ''
Rendered game_requests/_check_requests.html.erb (2.0ms)
Rendered game_requests/check_requests.js.erb (6.3ms)
Completed 200 OK in 27ms (Views: 10.9ms | ActiveRecord: 1.3ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:54:15 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"w", "commit"=>"Check Requests"}
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'w'
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35m (0.1ms)[0m rollback transaction
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'w'[0m
Rendered game_requests/_check_requests.html.erb (0.5ms)
Rendered game_requests/check_requests.js.erb (2.6ms)
Completed 200 OK in 16ms (Views: 7.1ms | ActiveRecord: 1.0ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:54:16 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"wd", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'wd'[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mSQL (1.4ms)[0m [1mINSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 24 Jun 2015 14:54:16 UTC +00:00], ["name", "wd"], ["updated_at", Wed, 24 Jun 2015 14:54:16 UTC +00:00]]
[1m[35m (1.0ms)[0m commit transaction
[1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'wd'[0m
Rendered game_requests/_check_requests.html.erb (1.3ms)
Rendered game_requests/check_requests.js.erb (4.2ms)
Completed 200 OK in 19ms (Views: 9.7ms | ActiveRecord: 3.0ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:54:18 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"wdd", "commit"=>"Check Requests"}
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'wdd'[0m
[1m[35m (0.3ms)[0m begin transaction
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 24 Jun 2015 14:54:18 UTC +00:00], ["name", "wdd"], ["updated_at", Wed, 24 Jun 2015 14:54:18 UTC +00:00]]
[1m[35m (0.7ms)[0m commit transaction
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'wdd'[0m
Rendered game_requests/_check_requests.html.erb (0.8ms)
Rendered game_requests/check_requests.js.erb (3.5ms)
Completed 200 OK in 21ms (Views: 7.8ms | ActiveRecord: 2.3ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:54:19 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"wdwdd", "commit"=>"Check Requests"}
[1m[35mUser Load (0.8ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'wdwdd'[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 24 Jun 2015 14:54:19 UTC +00:00], ["name", "wdwdd"], ["updated_at", Wed, 24 Jun 2015 14:54:19 UTC +00:00]]
[1m[35m (0.9ms)[0m commit transaction
[1m[36mGameRequest Load (0.6ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'wdwdd'[0m
Rendered game_requests/_check_requests.html.erb (2.4ms)
Rendered game_requests/check_requests.js.erb (5.1ms)
Completed 200 OK in 21ms (Views: 9.2ms | ActiveRecord: 3.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:54:20 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdawdwdwdd", "commit"=>"Check Requests"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdawdwdwdd'[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 24 Jun 2015 14:54:20 UTC +00:00], ["name", "awdawdwdwdd"], ["updated_at", Wed, 24 Jun 2015 14:54:20 UTC +00:00]]
[1m[35m (1.6ms)[0m commit transaction
[1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awdawdwdwdd'[0m
Rendered game_requests/_check_requests.html.erb (1.2ms)
Rendered game_requests/check_requests.js.erb (4.0ms)
Completed 200 OK in 18ms (Views: 8.6ms | ActiveRecord: 3.1ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:54:44 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdawdwdwdd", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdawdwdwdd'[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 24 Jun 2015 14:54:44 UTC +00:00], ["name", "awdawdwdwdd"], ["updated_at", Wed, 24 Jun 2015 14:54:44 UTC +00:00]]
SQLite3::ConstraintException: UNIQUE constraint failed: game_requests.name: INSERT INTO “game_requests” (“created_at”, “name”, “updated_at”) VALUES (?, ?, ?)
[1m[35m (0.2ms)[0m rollback transaction
Completed 500 Internal Server Error in 40ms
ActiveRecord::RecordNotUnique (SQLite3::ConstraintException: UNIQUE constraint failed: game_requests.name: INSERT INTO “game_requests” (“created_at”, “name”, “updated_at”) VALUES (?, ?, ?)):
app/controllers/game_requests_controller.rb:66:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:54:45 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdawdwdwddawd", "commit"=>"Check Requests"}
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdawdwdwddawd'
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mSQL (0.4ms)[0m INSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 24 Jun 2015 14:54:45 UTC +00:00], ["name", "awdawdwdwddawd"], ["updated_at", Wed, 24 Jun 2015 14:54:45 UTC +00:00]]
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awdawdwdwddawd'
Rendered game_requests/_check_requests.html.erb (2.5ms)
Rendered game_requests/check_requests.js.erb (5.3ms)
Completed 200 OK in 22ms (Views: 10.3ms | ActiveRecord: 2.1ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:54:47 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"1wqwe", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = '1wqwe'
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mSQL (0.4ms)[0m INSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 24 Jun 2015 14:54:47 UTC +00:00], ["name", "1wqwe"], ["updated_at", Wed, 24 Jun 2015 14:54:47 UTC +00:00]]
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = '1wqwe'
Rendered game_requests/_check_requests.html.erb (0.8ms)
Rendered game_requests/check_requests.js.erb (4.6ms)
Completed 200 OK in 14ms (Views: 8.8ms | ActiveRecord: 1.5ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:54:48 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"1wqweasd", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = '1wqweasd'
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 24 Jun 2015 14:54:48 UTC +00:00], ["name", "1wqweasd"], ["updated_at", Wed, 24 Jun 2015 14:54:48 UTC +00:00]]
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
[1m[35mGameRequest Load (0.5ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = '1wqweasd'
Rendered game_requests/_check_requests.html.erb (2.6ms)
Rendered game_requests/check_requests.js.erb (5.3ms)
Completed 200 OK in 13ms (Views: 8.5ms | ActiveRecord: 1.7ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:54:49 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"1wqweasdawd", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = '1wqweasdawd'
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 24 Jun 2015 14:54:49 UTC +00:00], ["name", "1wqweasdawd"], ["updated_at", Wed, 24 Jun 2015 14:54:49 UTC +00:00]]
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = '1wqweasdawd'
Rendered game_requests/_check_requests.html.erb (0.9ms)
Rendered game_requests/check_requests.js.erb (3.5ms)
Completed 200 OK in 11ms (Views: 6.6ms | ActiveRecord: 1.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:54:53 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"1wqweasdawdwad", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = '1wqweasdawdwad'
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mSQL (0.4ms)[0m INSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 24 Jun 2015 14:54:53 UTC +00:00], ["name", "1wqweasdawdwad"], ["updated_at", Wed, 24 Jun 2015 14:54:53 UTC +00:00]]
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = '1wqweasdawdwad'
Rendered game_requests/_check_requests.html.erb (0.8ms)
Rendered game_requests/check_requests.js.erb (4.0ms)
Completed 200 OK in 13ms (Views: 8.8ms | ActiveRecord: 1.6ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:54:54 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awd", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awd'
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 24 Jun 2015 14:54:54 UTC +00:00], ["name", "awd"], ["updated_at", Wed, 24 Jun 2015 14:54:54 UTC +00:00]]
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
[1m[35mGameRequest Load (0.3ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awd'
Rendered game_requests/_check_requests.html.erb (1.6ms)
Rendered game_requests/check_requests.js.erb (4.5ms)
Completed 200 OK in 13ms (Views: 8.0ms | ActiveRecord: 1.6ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 16:55:15 +0200 Processing by GameRequestsController#new as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143506195520 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:23)
Rendered game_requests/new.html.erb within layouts/application (1.6ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 30ms (Views: 13.6ms | ActiveRecord: 0.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 16:55:15 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 16:55:15 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 16:55:15 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 16:55:15 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 16:55:15 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 16:55:15 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 16:55:15 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 16:55:15 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 16:55:15 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 16:55:15 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 16:55:15 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 16:55:15 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 16:55:15 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 16:55:15 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 16:55:15 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 16:55:15 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 16:55:15 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 16:55:15 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 16:55:15 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 16:55:15 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 16:55:15 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 16:55:15 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 16:55:15 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 16:55:15 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 16:55:15 +0200
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 16:56:34 +0200 Processing by GameRequestsController#new as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143481318940 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:24)
Rendered game_requests/new.html.erb within layouts/application (1.8ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 16ms (Views: 13.5ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:34 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:34 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:34 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:34 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:34 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:34 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:34 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:34 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:34 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:34 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:34 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:34 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:34 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:35 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:35 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:35 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:35 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:35 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:35 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:35 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:35 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:35 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:35 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:35 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:35 +0200
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 16:56:36 +0200 Processing by GameRequestsController#new as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143481318940 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:24)
Rendered game_requests/new.html.erb within layouts/application (1.1ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 12ms (Views: 10.4ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:36 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:36 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:36 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:36 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:36 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:36 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:36 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:36 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:36 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:36 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:36 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:36 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:36 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:36 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:36 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:36 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:36 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:36 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:36 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:36 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:36 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:36 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:36 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:36 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:36 +0200
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 16:56:49 +0200 Processing by GameRequestsController#new as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143515059720 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (2.5ms) Rendered shared/_header.html.erb (0.8ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 13ms (Views: 11.3ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:49 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:49 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:49 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:49 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:49 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:49 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:49 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:49 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:49 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:49 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:49 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:49 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:49 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:49 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:49 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:49 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:49 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:49 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:49 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:49 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:49 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:49 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:49 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:49 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:49 +0200
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 16:56:57 +0200 Processing by GameRequestsController#new as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143509299360 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (1.5ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 12ms (Views: 10.0ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:57 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:57 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:57 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:57 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:57 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:57 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:57 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:57 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:57 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:57 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:57 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:57 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:57 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:57 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 16:56:57 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:57 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:57 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:57 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:57 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:57 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:57 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:57 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:57 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:57 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 16:56:57 +0200
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 16:57:05 +0200 Processing by GameRequestsController#new as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143481465680 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (1.5ms) Rendered shared/_header.html.erb (61.7ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 73ms (Views: 71.3ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:05 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:05 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:05 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:05 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:05 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:05 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:05 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:05 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:05 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:05 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:05 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:05 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:05 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:05 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:05 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:05 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:05 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:05 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:05 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:05 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:05 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:05 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:05 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:05 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:05 +0200
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 16:57:11 +0200 Processing by GameRequestsController#new as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143509014040 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (1.6ms) Rendered shared/_header.html.erb (0.8ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 12ms (Views: 10.0ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:11 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:11 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:11 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:11 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:11 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:11 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:11 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:11 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:11 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:11 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:11 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:11 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:11 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:11 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:11 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:11 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:11 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:11 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:11 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:11 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:11 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:11 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:11 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:11 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:11 +0200
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 16:57:15 +0200 Processing by GameRequestsController#new as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143508541740 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (1.5ms) Rendered shared/_header.html.erb (0.9ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 12ms (Views: 9.7ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:15 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:15 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:15 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:15 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:15 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:15 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:15 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:15 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:15 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:15 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:15 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:15 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:15 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:15 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 16:57:15 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:15 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:15 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:15 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:15 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:15 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:15 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:15 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:15 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:15 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 16:57:15 +0200
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:57:28 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awd", "commit"=>"Check Requests"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awd'
Completed 500 Internal Server Error in 4ms
RuntimeError (no more requests left):
app/models/user.rb:25:in `request_a_game' app/controllers/game_requests_controller.rb:60:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.3ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:57:30 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwe", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwe'
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 24 Jun 2015 14:57:30 UTC +00:00], ["name", "awdwe"], ["updated_at", Wed, 24 Jun 2015 14:57:30 UTC +00:00]]
[1m[36m (1.7ms)[0m [1mcommit transaction[0m
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awdwe'
Rendered game_requests/_check_requests.html.erb (2.4ms)
Rendered game_requests/check_requests.js.erb (5.0ms)
Completed 200 OK in 97ms (Views: 9.7ms | ActiveRecord: 2.9ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:57:31 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwef", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwef'
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mSQL (0.4ms)[0m INSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 24 Jun 2015 14:57:31 UTC +00:00], ["name", "awdwef"], ["updated_at", Wed, 24 Jun 2015 14:57:31 UTC +00:00]]
[1m[36m (1.5ms)[0m [1mcommit transaction[0m
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awdwef'
Rendered game_requests/_check_requests.html.erb (1.2ms)
Rendered game_requests/check_requests.js.erb (5.5ms)
Completed 200 OK in 15ms (Views: 9.5ms | ActiveRecord: 2.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:57:32 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrg", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrg'
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 24 Jun 2015 14:57:32 UTC +00:00], ["name", "awdwefrg"], ["updated_at", Wed, 24 Jun 2015 14:57:32 UTC +00:00]]
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrg'
Rendered game_requests/_check_requests.html.erb (1.6ms)
Rendered game_requests/check_requests.js.erb (4.4ms)
Completed 200 OK in 12ms (Views: 7.8ms | ActiveRecord: 1.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:57:34 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterte3q", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterte3q'
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mSQL (0.3ms)[0m INSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 24 Jun 2015 14:57:34 UTC +00:00], ["name", "awdwefrggerterte3q"], ["updated_at", Wed, 24 Jun 2015 14:57:34 UTC +00:00]]
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
[1m[35mGameRequest Load (0.3ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterte3q'
Rendered game_requests/_check_requests.html.erb (1.1ms)
Rendered game_requests/check_requests.js.erb (4.0ms)
Completed 200 OK in 12ms (Views: 7.4ms | ActiveRecord: 1.5ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 16:58:43 +0200 Processing by GameRequestsController#new as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143509824780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (2.1ms) Rendered shared/_header.html.erb (0.9ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 32ms (Views: 13.9ms | ActiveRecord: 0.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 16:58:43 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 16:58:43 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 16:58:43 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 16:58:43 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 16:58:43 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 16:58:43 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 16:58:43 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 16:58:43 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 16:58:43 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 16:58:43 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 16:58:43 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 16:58:43 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 16:58:43 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 16:58:43 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 16:58:43 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 16:58:43 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 16:58:43 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 16:58:43 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 16:58:43 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 16:58:43 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 16:58:43 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 16:58:43 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 16:58:43 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 16:58:43 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 16:58:43 +0200
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:58:44 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterte3q", "commit"=>"Check Requests"}
[1m[35mUser Load (0.8ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterte3q'[0m
Completed 500 Internal Server Error in 8ms
RuntimeError (no more requests left):
app/models/user.rb:25:in `request_a_game' app/controllers/game_requests_controller.rb:60:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.1ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:58:45 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterte3q", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterte3q'[0m
Completed 500 Internal Server Error in 3ms
RuntimeError (no more requests left):
app/models/user.rb:25:in `request_a_game' app/controllers/game_requests_controller.rb:60:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.3ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:59:36 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterte3q", "commit"=>"Check Requests"}
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterte3q'[0m
Completed 500 Internal Server Error in 27ms
RuntimeError (no more requests left):
app/models/user.rb:25:in `request_a_game' app/controllers/game_requests_controller.rb:60:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.0ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 16:59:40 +0200 Processing by GameRequestsController#new as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143509824780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (0.9ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 30ms (Views: 10.7ms | ActiveRecord: 0.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 16:59:40 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 16:59:40 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 16:59:40 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 16:59:40 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 16:59:40 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 16:59:40 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 16:59:40 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 16:59:40 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 16:59:40 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 16:59:40 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 16:59:40 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 16:59:40 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 16:59:40 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 16:59:40 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 16:59:40 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 16:59:40 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 16:59:40 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 16:59:40 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 16:59:40 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 16:59:40 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 16:59:40 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 16:59:40 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 16:59:40 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 16:59:40 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 16:59:40 +0200
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:59:41 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterte3q", "commit"=>"Check Requests"}
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterte3q'
Completed 500 Internal Server Error in 6ms
RuntimeError (no more requests left):
app/models/user.rb:25:in `request_a_game' app/controllers/game_requests_controller.rb:60:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.0ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:59:41 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterte3q", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterte3q'
Completed 500 Internal Server Error in 3ms
RuntimeError (no more requests left):
app/models/user.rb:25:in `request_a_game' app/controllers/game_requests_controller.rb:60:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.6ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:59:41 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterte3q", "commit"=>"Check Requests"}
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterte3q'
Completed 500 Internal Server Error in 9ms
RuntimeError (no more requests left):
app/models/user.rb:25:in `request_a_game' app/controllers/game_requests_controller.rb:60:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:59:42 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterte3q", "commit"=>"Check Requests"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterte3q'
Completed 500 Internal Server Error in 3ms
RuntimeError (no more requests left):
app/models/user.rb:25:in `request_a_game' app/controllers/game_requests_controller.rb:60:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.0ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:59:43 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterte3q", "commit"=>"Check Requests"}
[1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterte3q'
Completed 500 Internal Server Error in 8ms
RuntimeError (no more requests left):
app/models/user.rb:25:in `request_a_game' app/controllers/game_requests_controller.rb:60:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:59:44 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterteawd3q", "commit"=>"Check Requests"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterteawd3q'
Rendered game_requests/new.html.erb within layouts/application (4.2ms)
Completed 500 Internal Server Error in 15ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:70:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:59:44 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterteawd3q", "commit"=>"Check Requests"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterteawd3q'
Rendered game_requests/new.html.erb within layouts/application (2.7ms)
Completed 500 Internal Server Error in 11ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:70:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.0ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 16:59:44 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterteawd3q", "commit"=>"Check Requests"}
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterteawd3q'
Rendered game_requests/new.html.erb within layouts/application (1.9ms)
Completed 500 Internal Server Error in 12ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:70:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.0ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 17:00:26 +0200 Processing by GameRequestsController#new as HTML
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143509824780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (1.5ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 37ms (Views: 15.1ms | ActiveRecord: 0.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 17:00:26 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 17:00:26 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 17:00:26 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 17:00:26 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 17:00:26 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 17:00:26 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 17:00:26 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 17:00:26 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 17:00:26 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 17:00:26 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 17:00:26 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 17:00:26 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 17:00:26 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 17:00:26 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 17:00:26 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 17:00:26 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 17:00:26 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 17:00:26 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 17:00:26 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 17:00:26 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 17:00:26 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 17:00:26 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 17:00:26 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 17:00:26 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 17:00:26 +0200
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:00:27 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterteawd3q", "commit"=>"Check Requests"}
[1m[35mUser Load (0.8ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterteawd3q'[0m
Rendered game_requests/new.html.erb within layouts/application (3.1ms)
Completed 500 Internal Server Error in 12ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.5ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:00:27 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterteawd3q", "commit"=>"Check Requests"}
[1m[35mUser Load (0.9ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterteawd3q'[0m
Rendered game_requests/new.html.erb within layouts/application (2.6ms)
Completed 500 Internal Server Error in 13ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.9ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:00:27 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterteawd3q", "commit"=>"Check Requests"}
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterteawd3q'[0m
Rendered game_requests/new.html.erb within layouts/application (2.2ms)
Completed 500 Internal Server Error in 12ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (76.8ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:00:28 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterteawd3q", "commit"=>"Check Requests"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterteawd3q'[0m
Rendered game_requests/new.html.erb within layouts/application (1.9ms)
Completed 500 Internal Server Error in 8ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.8ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:00:28 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterteawd3q", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterteawd3q'[0m
Rendered game_requests/new.html.erb within layouts/application (1.8ms)
Completed 500 Internal Server Error in 8ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.0ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:00:28 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterteawd3q", "commit"=>"Check Requests"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterteawd3q'[0m
Rendered game_requests/new.html.erb within layouts/application (1.9ms)
Completed 500 Internal Server Error in 13ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.3ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:00:29 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterteawd3q", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterteawd3q'[0m
Rendered game_requests/new.html.erb within layouts/application (2.0ms)
Completed 500 Internal Server Error in 8ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:00:29 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterteawd3q", "commit"=>"Check Requests"}
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterteawd3q'[0m
Rendered game_requests/new.html.erb within layouts/application (2.0ms)
Completed 500 Internal Server Error in 13ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.3ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:01:56 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterteawd3q", "commit"=>"Check Requests"}
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterteawd3q'[0m
Rendered game_requests/new.html.erb within layouts/application (2.3ms)
Completed 500 Internal Server Error in 12ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.8ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 17:01:57 +0200 Processing by GameRequestsController#new as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143509824780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (0.9ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 11ms (Views: 9.8ms | ActiveRecord: 0.2ms)
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:57 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:57 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:57 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 17:01:57 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 17:01:57 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 17:01:57 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 17:01:57 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 17:01:57 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 17:01:57 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 17:01:57 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 17:01:57 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 17:01:57 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 17:01:57 +0200
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:57 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:57 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:57 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:57 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:57 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:57 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:57 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:57 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:57 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:57 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:57 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:57 +0200
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:01:58 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterteawd3q", "commit"=>"Check Requests"}
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterteawd3q'
Rendered game_requests/new.html.erb within layouts/application (2.6ms)
Completed 500 Internal Server Error in 14ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:01:58 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterteawd3q", "commit"=>"Check Requests"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterteawd3q'
Rendered game_requests/new.html.erb within layouts/application (2.4ms)
Completed 500 Internal Server Error in 12ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.1ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 17:01:59 +0200 Processing by GameRequestsController#new as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143509824780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (0.9ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 13ms (Views: 10.9ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:59 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:59 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:59 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:59 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:59 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:59 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:59 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:59 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:59 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:59 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:59 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:59 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:59 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:59 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 17:01:59 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 17:01:59 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 17:01:59 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 17:01:59 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 17:01:59 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 17:01:59 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 17:01:59 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 17:01:59 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 17:01:59 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 17:01:59 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 17:01:59 +0200
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:02:00 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterteawd3q", "commit"=>"Check Requests"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.8ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterteawd3q'[0m
Rendered game_requests/new.html.erb within layouts/application (2.3ms)
Completed 500 Internal Server Error in 13ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (52.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (62.0ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:02:00 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterteawd3q", "commit"=>"Check Requests"}
[1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterteawd3q'[0m
Rendered game_requests/new.html.erb within layouts/application (2.1ms)
Completed 500 Internal Server Error in 13ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (75.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (83.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:02:01 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterteawd3q", "commit"=>"Check Requests"}
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterteawd3q'[0m
Rendered game_requests/new.html.erb within layouts/application (2.2ms)
Completed 500 Internal Server Error in 14ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.1ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:02:01 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterteawd3q", "commit"=>"Check Requests"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterteawd3q'[0m
Rendered game_requests/new.html.erb within layouts/application (1.9ms)
Completed 500 Internal Server Error in 8ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.7ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:02:01 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterteawd3q", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterteawd3q'[0m
Rendered game_requests/new.html.erb within layouts/application (1.9ms)
Completed 500 Internal Server Error in 7ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.5ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:02:01 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterteawd3q", "commit"=>"Check Requests"}
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterteawd3q'[0m
Rendered game_requests/new.html.erb within layouts/application (2.5ms)
Completed 500 Internal Server Error in 13ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.0ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:02:02 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterteawd3q", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterteawd3q'[0m
Rendered game_requests/new.html.erb within layouts/application (1.9ms)
Completed 500 Internal Server Error in 8ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.2ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:02:02 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwefrggerterteawd3q", "commit"=>"Check Requests"}
[1m[35mUser Load (0.9ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwefrggerterteawd3q'[0m
Rendered game_requests/new.html.erb within layouts/application (1.9ms)
Completed 500 Internal Server Error in 12ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.4ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 17:02:33 +0200 Processing by GameRequestsController#new as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143509824780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (0.9ms) Rendered shared/_header.html.erb (0.9ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:33 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:33 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:33 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:33 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:33 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:33 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:33 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:33 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:33 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:33 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:33 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:33 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:33 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:33 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:33 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:33 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:33 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:33 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:33 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:33 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:33 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:33 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:33 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:33 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:33 +0200
Started DELETE “/users/sign_out” for 127.0.0.1 at 2015-06-24 17:02:34 +0200 Processing by Devise::SessionsController#destroy as HTML
Parameters: {"authenticity_token"=>"C25LT0JLOcr4v0fKUSq1qwZ3hfuvAzFkc8fOIuC4Jjc="}
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
Redirected to localhost:3000/ Completed 302 Found in 10ms (ActiveRecord: 0.7ms)
Started GET “/” for 127.0.0.1 at 2015-06-24 17:02:34 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (16.8ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.0ms) Rendered widgets/_advertisement.html.erb (0.3ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.8ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143467587220 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.4ms) Rendered widgets/_advertisement.html.erb (0.2ms) Rendered welcome/index.html.erb within layouts/application (46.1ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 61ms (Views: 53.7ms | ActiveRecord: 2.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:34 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:34 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:34 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:34 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:34 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:34 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:34 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:34 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:34 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:34 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:34 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:34 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:34 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:34 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:34 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:34 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:34 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:34 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:34 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:34 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:34 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:34 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:34 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:34 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:34 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-24 17:02:34 +0200
Started GET “/users/sign_in” for 127.0.0.1 at 2015-06-24 17:02:35 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (0.4ms) Rendered devise/sessions/new.html.erb within layouts/application (2.4ms) Rendered shared/_header.html.erb (1.8ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.0ms)
Started POST “/users/sign_in” for 127.0.0.1 at 2015-06-24 17:02:44 +0200 Processing by Devise::SessionsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YmhN5OrgAu8dn71hezMWLPXYKsdd2qNQbLYG/I7Cau4=", "user"=>{"email"=>"peter@son.de", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."email" = 'peter@son.de' ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mSQL (0.5ms)[0m UPDATE "users" SET "remember_created_at" = ?, "updated_at" = ? WHERE "users"."id" = 52 [["remember_created_at", Wed, 24 Jun 2015 15:02:44 UTC +00:00], ["updated_at", Wed, 24 Jun 2015 15:02:44 UTC +00:00]]
[1m[36m (1.5ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mSQL (0.4ms)[0m [1mUPDATE "users" SET "current_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 52[0m [["current_sign_in_at", Wed, 24 Jun 2015 15:02:44 UTC +00:00], ["sign_in_count", 2], ["updated_at", Wed, 24 Jun 2015 15:02:44 UTC +00:00]]
[1m[35m (0.6ms)[0m commit transaction
Redirected to localhost:3000/ Completed 302 Found in 75ms (ActiveRecord: 3.3ms)
Started GET “/” for 127.0.0.1 at 2015-06-24 17:02:44 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.7ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.9ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (6.9ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143467587220 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (23.7ms) Rendered widgets/_advertisement.html.erb (0.5ms) Rendered welcome/index.html.erb within layouts/application (42.6ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.5ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 59ms (Views: 54.0ms | ActiveRecord: 3.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:44 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:44 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:44 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:44 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:44 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:44 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:44 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:44 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:44 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:44 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:44 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:44 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:44 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:44 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 17:02:44 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:44 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:44 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:44 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:44 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:44 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:44 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:44 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:44 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:44 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 17:02:44 +0200
Started GET “/” for 127.0.0.1 at 2015-06-24 17:03:03 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (1.9ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (1.8ms) Rendered widgets/_advertisement.html.erb (0.1ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143467587220 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (20.2ms) Rendered widgets/_advertisement.html.erb (0.2ms) Rendered welcome/index.html.erb within layouts/application (29.9ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.5ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 45ms (Views: 41.7ms | ActiveRecord: 2.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:03 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:03 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:03 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:03 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:03 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:03 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:03 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:03 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:03 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:03 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:03 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:03 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:03 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:03 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:03 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 17:03:03 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 17:03:03 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 17:03:03 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 17:03:03 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 17:03:03 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 17:03:03 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 17:03:03 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 17:03:03 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 17:03:03 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 17:03:03 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-24 17:03:03 +0200
Started GET “/” for 127.0.0.1 at 2015-06-24 17:03:03 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (49.9ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (52.9ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.9ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (6.8ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143467587220 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (29.8ms) Rendered widgets/_advertisement.html.erb (0.4ms) Rendered welcome/index.html.erb within layouts/application (98.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.1ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 112ms (Views: 57.4ms | ActiveRecord: 52.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:04 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:04 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:04 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:04 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:04 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:04 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:04 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:04 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:04 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:04 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:04 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:04 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:04 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:04 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 17:03:04 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 17:03:04 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 17:03:04 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 17:03:04 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 17:03:04 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 17:03:04 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 17:03:04 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 17:03:04 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 17:03:04 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 17:03:04 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 17:03:04 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-24 17:03:04 +0200
Started GET “/games” for 127.0.0.1 at 2015-06-24 17:03:04 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (12.2ms) Rendered games/index.html.erb within layouts/application (15.5ms) Rendered shared/_header.html.erb (0.9ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 27ms (Views: 24.3ms | ActiveRecord: 1.2ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 17:03:05 +0200 Processing by GameRequestsController#new as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143509098060 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (1.6ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 18ms (Views: 15.8ms | ActiveRecord: 0.2ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:07 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awd", "commit"=>"Check Requests"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awd'[0m
Completed 500 Internal Server Error in 6ms
RuntimeError (no more requests left):
app/models/user.rb:25:in `request_a_game' app/controllers/game_requests_controller.rb:60:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.0ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:08 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awd", "commit"=>"Check Requests"}
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awd'[0m
Completed 500 Internal Server Error in 5ms
RuntimeError (no more requests left):
app/models/user.rb:25:in `request_a_game' app/controllers/game_requests_controller.rb:60:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:11 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (2.6ms)
Completed 500 Internal Server Error in 15ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:12 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (2.7ms)
Completed 500 Internal Server Error in 11ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.6ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:12 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (2.8ms)
Completed 500 Internal Server Error in 16ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.3ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:12 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.7ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (2.4ms)
Completed 500 Internal Server Error in 13ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.0ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:12 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (3.6ms)
Completed 500 Internal Server Error in 12ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.1ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:12 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (2.4ms)
Completed 500 Internal Server Error in 11ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:13 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (2.3ms)
Completed 500 Internal Server Error in 14ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.2ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:13 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (2.0ms)
Completed 500 Internal Server Error in 7ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.7ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:13 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (2.4ms)
Completed 500 Internal Server Error in 10ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.7ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:13 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (2.6ms)
Completed 500 Internal Server Error in 14ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.6ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:14 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (2.0ms)
Completed 500 Internal Server Error in 9ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.5ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:14 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (2.0ms)
Completed 500 Internal Server Error in 8ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.8ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:14 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (1.0ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (3.0ms)
Completed 500 Internal Server Error in 17ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.2ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:14 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (2.2ms)
Completed 500 Internal Server Error in 8ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.1ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:15 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (3.0ms)
Completed 500 Internal Server Error in 15ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:15 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (2.5ms)
Completed 500 Internal Server Error in 13ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.9ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:15 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (1.9ms)
Completed 500 Internal Server Error in 14ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.3ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:15 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (2.7ms)
Completed 500 Internal Server Error in 13ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.6ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:16 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (2.1ms)
Completed 500 Internal Server Error in 7ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.2ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:16 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.8ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (2.2ms)
Completed 500 Internal Server Error in 15ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.7ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:16 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (3.3ms)
Completed 500 Internal Server Error in 12ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:16 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (3.2ms)
Completed 500 Internal Server Error in 15ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.6ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:16 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (1.8ms)
Completed 500 Internal Server Error in 8ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.0ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:17 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (2.0ms)
Completed 500 Internal Server Error in 9ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.1ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:17 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (1.9ms)
Completed 500 Internal Server Error in 8ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.8ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:17 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (1.8ms)
Completed 500 Internal Server Error in 8ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.3ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:17 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (2.7ms)
Completed 500 Internal Server Error in 14ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.3ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:17 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (1.8ms)
Completed 500 Internal Server Error in 8ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.9ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:18 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (2.1ms)
Completed 500 Internal Server Error in 8ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.6ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:18 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (2.6ms)
Completed 500 Internal Server Error in 14ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.8ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:18 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (2.8ms)
Completed 500 Internal Server Error in 14ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.2ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:18 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.8ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (2.2ms)
Completed 500 Internal Server Error in 12ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.9ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:19 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (2.2ms)
Completed 500 Internal Server Error in 9ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %> 2: 3: <% if @game_request.errors.any? %> 4: <ul> 5: <% @game_request.errors.full_messages.each do |error| %> 6: <li><%= error %></li> app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160' app/controllers/game_requests_controller.rb:71:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:03:19 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"hello", "commit"=>"Check Requests"}
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'hello'[0m
Rendered game_requests/new.html.erb within layouts/application (2.1ms)
Completed 500 Internal Server Error in 11ms
ActionView::Template::Error (undefined method `errors' for nil:NilClass):
1: <% @spinner = "Loading..." %>
2:
3: <% if @game_request.errors.any? %>
4: <ul>
5: <% @game_request.errors.full_messages.each do |error| %>
6: <li><%= error %></li>
app/views/game_requests/new.html.erb:3:in `_app_views_game_requests_new_html_erb___3152807765548069211_70143508395160'
app/controllers/game_requests_controller.rb:71:in `check_requests'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.7ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.1ms)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'peter@son.de' LIMIT 1[0m
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."email" = 'peter@son.de' LIMIT 1
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'peter@son.de' LIMIT 1[0m
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."email" = 'peter@son.de' LIMIT 1
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'peter@son.de' LIMIT 1[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE (LOWER("users"."nickname") = LOWER('peter') AND "users"."id" != 52) LIMIT 1[0m
[1m[35mSQL (2.8ms)[0m UPDATE "users" SET "requests_today" = ?, "updated_at" = ? WHERE "users"."id" = 52 [["requests_today", 20], ["updated_at", Wed, 24 Jun 2015 15:04:38 UTC +00:00]]
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 17:04:50 +0200 Processing by GameRequestsController#new as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143509824780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (1.0ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 13ms (Views: 10.4ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:50 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:50 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:50 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:50 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:50 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:50 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:50 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:50 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:50 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:50 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:50 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:50 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:50 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:50 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:50 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:50 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:50 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:50 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:50 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:50 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:50 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:50 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 17:04:51 +0200 Processing by GameRequestsController#new as HTML
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143509824780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (2.0ms) Rendered shared/_header.html.erb (0.8ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 14ms (Views: 12.3ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:51 +0200
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:04:52 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"", "commit"=>"Check Requests"}
[1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = ''[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = ''
Rendered game_requests/_check_requests.html.erb (0.6ms)
Rendered game_requests/check_requests.js.erb (3.1ms)
Completed 200 OK in 29ms (Views: 10.3ms | ActiveRecord: 1.2ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:04:53 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awd", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awd'
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awd'[0m
Rendered game_requests/_check_requests.html.erb (1.1ms)
Rendered game_requests/check_requests.js.erb (1.8ms)
Completed 200 OK in 7ms (Views: 3.5ms | ActiveRecord: 0.5ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:04:55 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awd", "commit"=>"Check Requests"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awd'[0m
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awd'
Rendered game_requests/_check_requests.html.erb (1.0ms)
Rendered game_requests/check_requests.js.erb (1.7ms)
Completed 200 OK in 8ms (Views: 3.5ms | ActiveRecord: 0.6ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:04:55 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awd", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awd'
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awd'[0m
Rendered game_requests/_check_requests.html.erb (0.7ms)
Rendered game_requests/check_requests.js.erb (1.4ms)
Completed 200 OK in 6ms (Views: 3.2ms | ActiveRecord: 0.5ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:04:55 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awd", "commit"=>"Check Requests"}
[1m[35mUser Load (0.8ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awd'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awd'
Rendered game_requests/_check_requests.html.erb (0.7ms)
Rendered game_requests/check_requests.js.erb (1.3ms)
Completed 200 OK in 8ms (Views: 3.1ms | ActiveRecord: 1.1ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 17:04:55 +0200 Processing by GameRequestsController#new as HTML
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143509824780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (2.6ms) Rendered shared/_header.html.erb (1.7ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 20ms (Views: 16.6ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:55 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:55 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:55 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:55 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:55 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:55 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:55 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:55 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:55 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:55 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:55 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:55 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:55 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:55 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:55 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:55 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:55 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:55 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:55 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:55 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:55 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:55 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:55 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:55 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:55 +0200
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 17:04:56 +0200 Processing by GameRequestsController#new as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143509824780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (0.8ms) Rendered shared/_header.html.erb (0.8ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:56 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:56 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:56 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:56 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:56 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:56 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:56 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:56 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:56 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:56 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:56 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:56 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:56 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:56 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 17:04:56 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:56 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:56 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:56 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:56 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:56 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:56 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:56 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:56 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:56 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 17:04:56 +0200
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:04:57 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awd", "commit"=>"Check Requests"}
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.8ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awd'
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awd'[0m
Rendered game_requests/_check_requests.html.erb (1.0ms)
Rendered game_requests/check_requests.js.erb (1.7ms)
Completed 200 OK in 12ms (Views: 4.3ms | ActiveRecord: 1.4ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 17:06:14 +0200 Processing by GameRequestsController#new as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143509824780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (1.2ms) Rendered shared/_header.html.erb (0.9ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 26ms (Views: 11.3ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:14 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:14 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:14 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:14 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:14 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:14 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:14 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:14 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:14 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:14 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:14 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:14 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:14 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:14 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:14 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:14 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:14 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:14 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:14 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:14 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:14 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:14 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:14 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:14 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:14 +0200
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:06:29 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awd", "commit"=>"Check Requests"}
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awd'
[1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awd'[0m
Rendered game_requests/_check_requests.html.erb (10.8ms)
Rendered game_requests/check_requests.js.erb (12.6ms)
Completed 200 OK in 43ms (Views: 16.6ms | ActiveRecord: 1.2ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:06:30 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdd", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdd'[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 24 Jun 2015 15:06:30 UTC +00:00], ["name", "awdd"], ["updated_at", Wed, 24 Jun 2015 15:06:30 UTC +00:00]]
[1m[35m (0.6ms)[0m commit transaction
Completed 500 Internal Server Error in 11ms
NoMethodError (undefined method `update_params' for #<User:0x007f9719ea6ac0>):
app/controllers/game_requests_controller.rb:70:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.1ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:06:32 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awddw", "commit"=>"Check Requests"}
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awddw'
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 24 Jun 2015 15:06:32 UTC +00:00], ["name", "awddw"], ["updated_at", Wed, 24 Jun 2015 15:06:32 UTC +00:00]]
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
Completed 500 Internal Server Error in 11ms
NoMethodError (undefined method `update_params' for #<User:0x007f971dc68fc0>):
app/controllers/game_requests_controller.rb:70:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.3ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:06:33 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awddwqwe", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awddwqwe'[0m
[1m[35m (0.2ms)[0m begin transaction
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 24 Jun 2015 15:06:33 UTC +00:00], ["name", "awddwqwe"], ["updated_at", Wed, 24 Jun 2015 15:06:33 UTC +00:00]]
[1m[35m (0.8ms)[0m commit transaction
Completed 500 Internal Server Error in 11ms
NoMethodError (undefined method `update_params' for #<User:0x007f971dde6730>):
app/controllers/game_requests_controller.rb:70:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.1ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 17:06:33 +0200 Processing by GameRequestsController#new as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143509824780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (0.8ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 13ms (Views: 10.4ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:33 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:34 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:34 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:34 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:34 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:34 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:34 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:34 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:34 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:34 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:34 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:34 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:34 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:34 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:34 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:34 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:34 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:34 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:34 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:34 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:34 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:34 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:34 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:34 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:34 +0200
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:06:35 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awddwqweqweqwe", "commit"=>"Check Requests"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awddwqweqweqwe'[0m
[1m[35m (0.3ms)[0m begin transaction
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 24 Jun 2015 15:06:35 UTC +00:00], ["name", "awddwqweqweqwe"], ["updated_at", Wed, 24 Jun 2015 15:06:35 UTC +00:00]]
[1m[35m (0.6ms)[0m commit transaction
Completed 500 Internal Server Error in 13ms
NoMethodError (undefined method `update_params' for #<User:0x007f9718d306b0>):
app/controllers/game_requests_controller.rb:70:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.9ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:06:36 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awddwqweqweqwe21e3", "commit"=>"Check Requests"}
[1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awddwqweqweqwe21e3'
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 24 Jun 2015 15:06:36 UTC +00:00], ["name", "awddwqweqweqwe21e3"], ["updated_at", Wed, 24 Jun 2015 15:06:36 UTC +00:00]]
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
Completed 500 Internal Server Error in 9ms
NoMethodError (undefined method `update_params' for #<User:0x007f971da814c8>):
app/controllers/game_requests_controller.rb:70:in `check_requests' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.9ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 17:06:50 +0200 Processing by GameRequestsController#new as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143509824780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (1.3ms) Rendered shared/_header.html.erb (0.9ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 28ms (Views: 11.2ms | ActiveRecord: 0.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:50 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:50 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:50 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:50 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:50 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:50 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:50 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:50 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:50 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:50 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:50 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:50 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:50 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:50 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 17:06:50 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:50 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:50 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:50 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:50 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:50 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:50 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:50 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:50 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:50 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 17:06:50 +0200
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:06:51 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awddwqweqweqwe21e3", "commit"=>"Check Requests"}
[1m[36mUser Load (2.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awddwqweqweqwe21e3'
[1m[36mGameRequest Load (0.3ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awddwqweqweqwe21e3'[0m
Rendered game_requests/_check_requests.html.erb (13.7ms)
Rendered game_requests/check_requests.js.erb (14.8ms)
Completed 200 OK in 27ms (Views: 17.3ms | ActiveRecord: 2.6ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:06:52 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awddwqweqweqwe21eawd3", "commit"=>"Check Requests"}
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awddwqweqweqwe21eawd3'[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 24 Jun 2015 15:06:52 UTC +00:00], ["name", "awddwqweqweqwe21eawd3"], ["updated_at", Wed, 24 Jun 2015 15:06:52 UTC +00:00]]
[1m[35m (1.3ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.4ms)[0m SELECT 1 AS one FROM "users" WHERE (LOWER("users"."nickname") = LOWER('peter') AND "users"."id" != 52) LIMIT 1
[1m[36mSQL (0.8ms)[0m [1mUPDATE "users" SET "requests_today" = ?, "updated_at" = ? WHERE "users"."id" = 52[0m [["requests_today", 19], ["updated_at", Wed, 24 Jun 2015 15:06:52 UTC +00:00]]
[1m[35m (0.7ms)[0m commit transaction
[1m[36mGameRequest Load (0.3ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awddwqweqweqwe21eawd3'[0m
Rendered game_requests/_check_requests.html.erb (1.9ms)
Rendered game_requests/check_requests.js.erb (5.1ms)
Completed 200 OK in 33ms (Views: 9.3ms | ActiveRecord: 5.8ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:06:53 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awd", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awd'[0m
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awd'
Rendered game_requests/_check_requests.html.erb (1.3ms)
Rendered game_requests/check_requests.js.erb (2.3ms)
Completed 200 OK in 7ms (Views: 3.9ms | ActiveRecord: 0.5ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:07:53 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awd", "commit"=>"Check Requests"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awd'
[1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awd'[0m
Rendered game_requests/_check_requests.html.erb (1.0ms)
Rendered game_requests/check_requests.js.erb (2.0ms)
Completed 200 OK in 11ms (Views: 7.0ms | ActiveRecord: 0.6ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 17:08:28 +0200 Processing by GameRequestsController#new as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143509824780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (1.7ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 32ms (Views: 13.3ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:29 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:29 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:29 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:29 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:29 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:29 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:29 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:29 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:29 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:29 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:29 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:29 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:29 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:29 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:29 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:29 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:29 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:29 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:29 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:29 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:29 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:29 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:29 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:29 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:29 +0200
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:08:31 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awd", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awd'
[1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awd'[0m
Rendered game_requests/_check_requests.html.erb (11.2ms)
Rendered game_requests/check_requests.js.erb (12.0ms)
Completed 200 OK in 20ms (Views: 13.7ms | ActiveRecord: 0.6ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:08:31 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awd", "commit"=>"Check Requests"}
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awd'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awd'
Rendered game_requests/_check_requests.html.erb (1.1ms)
Rendered game_requests/check_requests.js.erb (1.9ms)
Completed 200 OK in 13ms (Views: 5.3ms | ActiveRecord: 0.9ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:08:32 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwad", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwad'
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 24 Jun 2015 15:08:32 UTC +00:00], ["name", "awdwad"], ["updated_at", Wed, 24 Jun 2015 15:08:32 UTC +00:00]]
[1m[36m (1.3ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE (LOWER("users"."nickname") = LOWER('peter') AND "users"."id" != 52) LIMIT 1[0m
[1m[35mSQL (0.4ms)[0m UPDATE "users" SET "requests_today" = ?, "updated_at" = ? WHERE "users"."id" = 52 [["requests_today", 18], ["updated_at", Wed, 24 Jun 2015 15:08:32 UTC +00:00]]
[1m[36m (0.5ms)[0m [1mcommit transaction[0m
[1m[35mGameRequest Load (0.5ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awdwad'
Rendered game_requests/_check_requests.html.erb (3.3ms)
Rendered game_requests/check_requests.js.erb (6.5ms)
Completed 200 OK in 22ms (Views: 9.5ms | ActiveRecord: 3.8ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 17:08:33 +0200 Processing by GameRequestsController#new as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143509824780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (2.3ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 16ms (Views: 14.5ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 17:08:33 +0200 Processing by GameRequestsController#new as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143509824780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (0.9ms) Rendered shared/_header.html.erb (0.8ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:33 +0200
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 17:08:34 +0200 Processing by GameRequestsController#new as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143509824780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (1.0ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 71ms (Views: 68.5ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:34 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:34 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:34 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:34 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:34 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:34 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:34 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:34 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:34 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:34 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:34 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:34 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:34 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:34 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:34 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:34 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:34 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:34 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:34 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:34 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:34 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:34 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:34 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:34 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:34 +0200
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:08:35 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwad", "commit"=>"Check Requests"}
[1m[35mUser Load (1.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwad'[0m
[1m[35mGameRequest Load (0.3ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awdwad'
Rendered game_requests/_check_requests.html.erb (1.4ms)
Rendered game_requests/check_requests.js.erb (2.2ms)
Completed 200 OK in 14ms (Views: 4.6ms | ActiveRecord: 1.6ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 17:08:36 +0200 Processing by GameRequestsController#new as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143509824780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (2.2ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 19ms (Views: 17.2ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:36 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:36 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:36 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:36 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:36 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:36 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:36 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:36 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:36 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:36 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:36 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:36 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:36 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:36 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:36 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:36 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:36 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:36 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:36 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:36 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:36 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:36 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:36 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:36 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:36 +0200
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:08:36 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwad", "commit"=>"Check Requests"}
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwad'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awdwad'
Rendered game_requests/_check_requests.html.erb (0.7ms)
Rendered game_requests/check_requests.js.erb (1.3ms)
Completed 200 OK in 9ms (Views: 3.5ms | ActiveRecord: 1.1ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:08:37 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwad", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwad'
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awdwad'[0m
Rendered game_requests/_check_requests.html.erb (0.8ms)
Rendered game_requests/check_requests.js.erb (1.6ms)
Completed 200 OK in 10ms (Views: 4.7ms | ActiveRecord: 0.7ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:08:38 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwaddw", "commit"=>"Check Requests"}
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwaddw'[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 24 Jun 2015 15:08:38 UTC +00:00], ["name", "awdwaddw"], ["updated_at", Wed, 24 Jun 2015 15:08:38 UTC +00:00]]
[1m[35m (1.7ms)[0m commit transaction
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE (LOWER("users"."nickname") = LOWER('peter') AND "users"."id" != 52) LIMIT 1
[1m[36mSQL (0.3ms)[0m [1mUPDATE "users" SET "requests_today" = ?, "updated_at" = ? WHERE "users"."id" = 52[0m [["requests_today", 17], ["updated_at", Wed, 24 Jun 2015 15:08:38 UTC +00:00]]
[1m[35m (0.7ms)[0m commit transaction
[1m[36mGameRequest Load (0.4ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awdwaddw'[0m
Rendered game_requests/_check_requests.html.erb (2.9ms)
Rendered game_requests/check_requests.js.erb (6.3ms)
Completed 200 OK in 27ms (Views: 11.0ms | ActiveRecord: 5.3ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:08:39 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwaddw", "commit"=>"Check Requests"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwaddw'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awdwaddw'
Rendered game_requests/_check_requests.html.erb (0.6ms)
Rendered game_requests/check_requests.js.erb (1.2ms)
Completed 200 OK in 9ms (Views: 3.6ms | ActiveRecord: 0.8ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:08:39 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdwaddw", "commit"=>"Check Requests"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdwaddw'
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awdwaddw'[0m
Rendered game_requests/_check_requests.html.erb (0.7ms)
Rendered game_requests/check_requests.js.erb (1.3ms)
Completed 200 OK in 6ms (Views: 3.2ms | ActiveRecord: 0.5ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 17:08:40 +0200 Processing by GameRequestsController#new as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143509824780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (1.0ms) Rendered shared/_header.html.erb (0.8ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:40 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:40 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:40 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:40 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:40 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:40 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:40 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:40 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:40 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:40 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:40 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:40 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:40 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:40 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:40 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:40 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:40 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:40 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:40 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:40 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:40 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:40 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:40 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:40 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:40 +0200
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:08:43 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"joiwqeawdwaddw", "commit"=>"Check Requests"}
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'joiwqeawdwaddw'
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 24 Jun 2015 15:08:43 UTC +00:00], ["name", "joiwqeawdwaddw"], ["updated_at", Wed, 24 Jun 2015 15:08:43 UTC +00:00]]
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE (LOWER("users"."nickname") = LOWER('peter') AND "users"."id" != 52) LIMIT 1[0m
[1m[35mSQL (0.7ms)[0m UPDATE "users" SET "requests_today" = ?, "updated_at" = ? WHERE "users"."id" = 52 [["requests_today", 16], ["updated_at", Wed, 24 Jun 2015 15:08:43 UTC +00:00]]
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'joiwqeawdwaddw'
Rendered game_requests/_check_requests.html.erb (1.1ms)
Rendered game_requests/check_requests.js.erb (4.8ms)
Completed 200 OK in 25ms (Views: 9.6ms | ActiveRecord: 3.9ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:08:44 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"joiwqeawdwaddw", "commit"=>"Check Requests"}
[1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'joiwqeawdwaddw'
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'joiwqeawdwaddw'[0m
Rendered game_requests/_check_requests.html.erb (0.9ms)
Rendered game_requests/check_requests.js.erb (1.6ms)
Completed 200 OK in 12ms (Views: 4.2ms | ActiveRecord: 1.2ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:08:45 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"joiwqeawdwaddw", "commit"=>"Check Requests"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'joiwqeawdwaddw'[0m
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'joiwqeawdwaddw'
Rendered game_requests/_check_requests.html.erb (1.3ms)
Rendered game_requests/check_requests.js.erb (2.0ms)
Completed 200 OK in 84ms (Views: 4.1ms | ActiveRecord: 0.9ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:08:45 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"joiwqeawdwaddw", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'joiwqeawdwaddw'
[1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'joiwqeawdwaddw'[0m
Rendered game_requests/_check_requests.html.erb (1.7ms)
Rendered game_requests/check_requests.js.erb (2.9ms)
Completed 200 OK in 10ms (Views: 5.0ms | ActiveRecord: 0.5ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 17:08:45 +0200 Processing by GameRequestsController#new as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143509824780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (0.9ms) Rendered shared/_header.html.erb (0.9ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 11ms (Views: 9.1ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:45 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:45 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:45 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:45 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:45 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:45 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:45 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:45 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:45 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:45 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:45 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:45 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:45 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:45 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:45 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:45 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:45 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:45 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:45 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:45 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:45 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:45 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:45 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:45 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:45 +0200
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 17:08:46 +0200 Processing by GameRequestsController#new as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143509824780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (0.8ms) Rendered shared/_header.html.erb (0.8ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:46 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:46 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:46 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:46 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:46 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:46 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:46 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:46 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:46 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:46 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:46 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:46 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:46 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:46 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:46 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:46 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:46 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:46 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:46 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:46 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:46 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:46 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:46 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:46 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:46 +0200
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 17:08:56 +0200 Processing by GameRequestsController#new as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143509824780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (1.0ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 85ms (Views: 9.7ms | ActiveRecord: 0.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:56 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:56 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:56 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:56 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:56 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:56 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:56 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:56 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:56 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:56 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:56 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:56 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:56 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:56 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 17:08:56 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:56 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:57 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:57 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:57 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:57 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:57 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:57 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:57 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:57 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 17:08:57 +0200
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:08:57 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"joiwqeawdwaddw", "commit"=>"Check Requests"}
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'joiwqeawdwaddw'
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'joiwqeawdwaddw'[0m
Rendered game_requests/_check_requests.html.erb (9.8ms)
Rendered game_requests/check_requests.js.erb (10.6ms)
Completed 200 OK in 18ms (Views: 12.4ms | ActiveRecord: 0.8ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:08:58 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"joiwqeawdwaddw", "commit"=>"Check Requests"}
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'joiwqeawdwaddw'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'joiwqeawdwaddw'
Rendered game_requests/_check_requests.html.erb (0.8ms)
Rendered game_requests/check_requests.js.erb (1.6ms)
Completed 200 OK in 10ms (Views: 3.7ms | ActiveRecord: 0.9ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 17:09:11 +0200 Processing by GameRequestsController#new as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143509824780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (1.2ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 79ms (Views: 11.3ms | ActiveRecord: 0.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:11 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:11 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:11 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:11 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:11 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:11 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:11 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:11 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:11 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:11 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:11 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:11 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:11 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:11 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:11 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 17:09:11 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 17:09:11 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 17:09:11 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 17:09:11 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 17:09:11 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 17:09:11 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 17:09:11 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 17:09:11 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 17:09:11 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 17:09:11 +0200
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:09:12 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"joiwqeawdwaddw", "commit"=>"Check Requests"}
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'joiwqeawdwaddw'[0m
[1m[35mGameRequest Load (0.3ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'joiwqeawdwaddw'
Rendered game_requests/_check_requests.html.erb (11.6ms)
Rendered game_requests/check_requests.js.erb (12.7ms)
Completed 200 OK in 22ms (Views: 14.5ms | ActiveRecord: 1.0ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:09:12 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"joiwqeawdwaddw", "commit"=>"Check Requests"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'joiwqeawdwaddw'
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'joiwqeawdwaddw'[0m
Rendered game_requests/_check_requests.html.erb (0.8ms)
Rendered game_requests/check_requests.js.erb (1.4ms)
Completed 200 OK in 6ms (Views: 3.3ms | ActiveRecord: 0.5ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:09:12 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"joiwqeawdwaddw", "commit"=>"Check Requests"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'joiwqeawdwaddw'[0m
[1m[35mGameRequest Load (0.5ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'joiwqeawdwaddw'
Rendered game_requests/_check_requests.html.erb (1.7ms)
Rendered game_requests/check_requests.js.erb (3.3ms)
Completed 200 OK in 10ms (Views: 5.9ms | ActiveRecord: 1.0ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:09:13 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"joiwqeawdwaddw", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'joiwqeawdwaddw'
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'joiwqeawdwaddw'[0m
Rendered game_requests/_check_requests.html.erb (0.7ms)
Rendered game_requests/check_requests.js.erb (1.3ms)
Completed 200 OK in 6ms (Views: 3.1ms | ActiveRecord: 0.5ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:09:15 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdjoiwqeawdwaddw", "commit"=>"Check Requests"}
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdjoiwqeawdwaddw'[0m
[1m[35m (0.2ms)[0m begin transaction
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 24 Jun 2015 15:09:15 UTC +00:00], ["name", "awdjoiwqeawdwaddw"], ["updated_at", Wed, 24 Jun 2015 15:09:15 UTC +00:00]]
[1m[35m (1.0ms)[0m commit transaction
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.3ms)[0m SELECT 1 AS one FROM "users" WHERE (LOWER("users"."nickname") = LOWER('peter') AND "users"."id" != 52) LIMIT 1
[1m[36mSQL (0.4ms)[0m [1mUPDATE "users" SET "requests_today" = ?, "updated_at" = ? WHERE "users"."id" = 52[0m [["requests_today", 15], ["updated_at", Wed, 24 Jun 2015 15:09:15 UTC +00:00]]
[1m[35m (0.6ms)[0m commit transaction
[1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awdjoiwqeawdwaddw'[0m
Rendered game_requests/_check_requests.html.erb (1.1ms)
Rendered game_requests/check_requests.js.erb (3.3ms)
Completed 200 OK in 26ms (Views: 6.5ms | ActiveRecord: 4.2ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:09:15 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdjoiwqeawdwaddw", "commit"=>"Check Requests"}
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdjoiwqeawdwaddw'[0m
[1m[35mGameRequest Load (0.3ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awdjoiwqeawdwaddw'
Rendered game_requests/_check_requests.html.erb (2.3ms)
Rendered game_requests/check_requests.js.erb (3.7ms)
Completed 200 OK in 13ms (Views: 5.7ms | ActiveRecord: 1.2ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:09:15 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdjoiwqeawdwaddw", "commit"=>"Check Requests"}
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.6ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdjoiwqeawdwaddw'
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awdjoiwqeawdwaddw'[0m
Rendered game_requests/_check_requests.html.erb (0.8ms)
Rendered game_requests/check_requests.js.erb (1.4ms)
Completed 200 OK in 10ms (Views: 3.7ms | ActiveRecord: 1.1ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-06-24 17:09:15 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"awdjoiwqeawdwaddw", "commit"=>"Check Requests"}
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'awdjoiwqeawdwaddw'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'awdjoiwqeawdwaddw'
Rendered game_requests/_check_requests.html.erb (0.7ms)
Rendered game_requests/check_requests.js.erb (1.2ms)
Completed 200 OK in 10ms (Views: 3.3ms | ActiveRecord: 1.1ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-24 17:09:16 +0200 Processing by GameRequestsController#new as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb___3152807765548069211_70143509824780 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (0.9ms) Rendered shared/_header.html.erb (0.8ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 10ms (Views: 9.0ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:16 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:16 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:16 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:16 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:16 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:16 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:16 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:16 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:16 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:16 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:16 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:16 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:16 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:16 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 17:09:16 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 17:09:16 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 17:09:16 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 17:09:16 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 17:09:16 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 17:09:16 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 17:09:16 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 17:09:16 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 17:09:16 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 17:09:16 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 17:09:16 +0200
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:25:46 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (1.0ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (10.5ms) Rendered shared/_header.html.erb (3.4ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 59ms (Views: 33.0ms | ActiveRecord: 1.9ms)
Started GET “/users/52” for 127.0.0.1 at 2015-06-24 23:25:47 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "52"]]
[1m[35m (0.6ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 52]]
[1m[36mGameCode Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 52]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (17.4ms)
Rendered shared/_header.html.erb (1.8ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 34ms (Views: 30.7ms | ActiveRecord: 2.1ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:25:48 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (6.1ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 18ms (Views: 15.8ms | ActiveRecord: 0.6ms)
Started GET “/games” for 127.0.0.1 at 2015-06-24 23:25:49 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.4ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (105.2ms) Rendered games/index.html.erb within layouts/application (109.2ms) Rendered shared/_header.html.erb (0.9ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 128ms (Views: 117.2ms | ActiveRecord: 2.6ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:25:49 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.8ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (12.6ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 26ms (Views: 23.3ms | ActiveRecord: 1.3ms)
Started GET “/” for 127.0.0.1 at 2015-06-24 23:25:50 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.0ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.7ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143509632480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (13.4ms) Rendered widgets/_advertisement.html.erb (0.1ms) Rendered welcome/index.html.erb within layouts/application (27.7ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.1ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 39ms (Views: 36.5ms | ActiveRecord: 1.9ms)
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-24 23:25:50 +0200
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:25:50 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (6.8ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 24ms (Views: 20.1ms | ActiveRecord: 0.9ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:26:13 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (5.2ms) Rendered shared/_header.html.erb (2.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 17ms (Views: 14.6ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:13 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:13 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:13 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:13 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:13 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:13 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:13 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:13 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:13 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:13 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:13 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:13 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:13 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:13 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:13 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:13 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:13 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:13 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:13 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:13 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:13 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:13 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:13 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:13 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:13 +0200
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:26:49 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (10.1ms) Rendered shared/_header.html.erb (2.5ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 25ms (Views: 21.8ms | ActiveRecord: 0.9ms)
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:49 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:49 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:49 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:49 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:50 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:50 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:50 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:50 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:50 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:50 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:50 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:50 +0200
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:50 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:50 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:50 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:50 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:50 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:50 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:50 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:50 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:50 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:50 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:50 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:50 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:50 +0200
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:26:54 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (9.5ms) Rendered shared/_header.html.erb (3.2ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 25ms (Views: 22.0ms | ActiveRecord: 1.1ms)
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:54 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:54 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:54 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:54 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:54 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:54 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:54 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:54 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:54 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:54 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:54 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:54 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:54 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:54 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:26:54 +0200
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:54 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:54 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:54 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:54 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:54 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:54 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:54 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:54 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:54 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:26:54 +0200
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:27:10 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.9ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (9.7ms) Rendered shared/_header.html.erb (5.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 26ms (Views: 22.7ms | ActiveRecord: 1.6ms)
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:10 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:10 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:10 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:10 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:10 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:10 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:10 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:10 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:10 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:10 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:10 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:10 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:10 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:10 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:10 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:10 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:10 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:10 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:10 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:10 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:10 +0200
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:10 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:10 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:10 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:10 +0200
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:27:37 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (5.7ms) Rendered shared/_header.html.erb (18.5ms)
Completed 500 Internal Server Error in 33ms
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/views/shared/_header.html.erb:40: syntax error, unexpected '<'
<span class="badge secondary">... ^
/Users/rbarisic/rails_projects/game_codes/app/views/shared/_header.html.erb:40: syntax error, unexpected tLABEL, expecting keyword_do or '{' or '(' …s=“badge secondary”>Your Coins: ';@output_buffer.append=( cu… … ^ /Users/rbarisic/rails_projects/game_codes/app/views/shared/_header.html.erb:41: unknown regexp option - l /Users/rbarisic/rails_projects/game_codes/app/views/shared/_header.html.erb:43: syntax error, unexpected '<'
<li id="';@output_buffer.appen... ^
/Users/rbarisic/rails_projects/game_codes/app/views/shared/_header.html.erb:45: syntax error, unexpected tIDENTIFIER, expecting ')' …t_buffer.append=( fa_icon 'sign-out', class: 'fa-fw' );@outp… … ^ /Users/rbarisic/rails_projects/game_codes/app/views/shared/_header.html.erb:45: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' …fer.append=( fa_icon 'sign-out', class: 'fa-fw' );@output_bu… … ^ /Users/rbarisic/rails_projects/game_codes/app/views/shared/_header.html.erb:45: syntax error, unexpected tIDENTIFIER, expecting ')' … fa_icon 'sign-out', class: 'fa-fw' );@output_buffer.safe_ap… … ^ /Users/rbarisic/rails_projects/game_codes/app/views/shared/_header.html.erb:45: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' …icon 'sign-out', class: 'fa-fw' );@output_buffer.safe_append… … ^ /Users/rbarisic/rails_projects/game_codes/app/views/shared/_header.html.erb:45: syntax error, unexpected tCONSTANT, expecting ')' /Users/rbarisic/rails_projects/game_codes/app/views/shared/_header.html.erb:55: unknown regexp option - l /Users/rbarisic/rails_projects/game_codes/app/views/shared/_header.html.erb:57: syntax error, unexpected '<'
<li id="';@output_buffer.appen... ^
/Users/rbarisic/rails_projects/game_codes/app/views/shared/_header.html.erb:59: syntax error, unexpected tIDENTIFIER, expecting ')' …ffer.append=( fa_icon 'asterisk', class: 'fa-fw' );@output_b… … ^ /Users/rbarisic/rails_projects/game_codes/app/views/shared/_header.html.erb:59: syntax error, unexpected tIDENTIFIER, expecting ')' … fa_icon 'asterisk', class: 'fa-fw' );@output_buffer.safe_ap… … ^ /Users/rbarisic/rails_projects/game_codes/app/views/shared/_header.html.erb:59: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' …icon 'asterisk', class: 'fa-fw' );@output_buffer.safe_append… … ^ /Users/rbarisic/rails_projects/game_codes/app/views/shared/_header.html.erb:59: syntax error, unexpected tCONSTANT, expecting ')' /Users/rbarisic/rails_projects/game_codes/app/views/shared/_header.html.erb:63: unknown regexp option - l /Users/rbarisic/rails_projects/game_codes/app/views/shared/_header.html.erb:65: syntax error, unexpected tIDENTIFIER, expecting ')'
if cookies['adminWarning']
^
/Users/rbarisic/rails_projects/game_codes/app/views/shared/_header.html.erb:84: unknown regexp options - crpt /Users/rbarisic/rails_projects/game_codes/app/views/shared/_header.html.erb:84: unterminated string meets end of file /Users/rbarisic/rails_projects/game_codes/app/views/shared/_header.html.erb:84: syntax error, unexpected end-of-input, expecting ')'):
app/views/layouts/application.html.erb:19:in `_app_views_layouts_application_html_erb___229996220844653232_70143514568140' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (53.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (63.9ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:27:44 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (5.3ms) Rendered shared/_header.html.erb (2.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 18ms (Views: 15.2ms | ActiveRecord: 0.6ms)
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:44 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:44 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:44 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:44 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:44 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:44 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:44 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:44 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:44 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:44 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:44 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:44 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:44 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:44 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:44 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:44 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:44 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:44 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:44 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:44 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:44 +0200
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:44 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:44 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:44 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:44 +0200
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:27:45 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (5.5ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 0.6ms)
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:45 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:45 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:45 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:45 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:45 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:45 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:45 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:45 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:45 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:45 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:45 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:45 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:45 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:45 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:45 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:45 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:45 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:45 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:45 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:45 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:27:45 +0200
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:45 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:45 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:45 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:27:45 +0200
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:29:00 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (10.5ms) Rendered shared/_header.html.erb (1.8ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 26ms (Views: 23.3ms | ActiveRecord: 0.6ms)
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:00 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:00 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:00 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:00 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:00 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:00 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:01 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:01 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:01 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:01 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:01 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:01 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:01 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:01 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:01 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:01 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:01 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:01 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:01 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:01 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:01 +0200
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:01 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:01 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:01 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:01 +0200
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:29:01 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (7.6ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 82ms (Views: 78.6ms | ActiveRecord: 1.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:02 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:02 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:02 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:02 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:02 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:02 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:02 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:02 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:02 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:02 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:02 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:02 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:02 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:02 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:02 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:02 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:02 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:02 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:02 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:02 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:02 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:02 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:02 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:02 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:02 +0200
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:29:06 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (8.2ms) Rendered shared/_header.html.erb (6.5ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 30ms (Views: 27.0ms | ActiveRecord: 0.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:06 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:06 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:06 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:06 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:06 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:06 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:06 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:06 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:06 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:06 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:06 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:06 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:06 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:07 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:29:07 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:07 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:07 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:07 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:07 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:07 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:07 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:07 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:07 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:07 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:29:07 +0200
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:30:30 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (5.8ms) Rendered shared/_header.html.erb (2.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 90ms (Views: 17.2ms | ActiveRecord: 0.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:30:30 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:30:30 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:30:30 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:30:30 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:30:30 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:30:30 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:30:30 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:30:30 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:30:30 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:30:30 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:30:30 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:30:30 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:30:30 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:30:30 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:30:30 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:30:30 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:30:30 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:30:30 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:30:30 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:30:30 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:30:30 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:30:30 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:30:30 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:30:30 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:30:30 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:30:34 +0200
AbstractController::ActionNotFound (The action 'coins' could not be found for UsersController):
actionpack (4.0.8) lib/abstract_controller/base.rb:131:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__2831161720684355606__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.7ms)
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:30:44 +0200 Processing by UsersController#your_coins as HTML Completed 404 Not Found in 3ms
ActiveRecord::RecordNotFound (Couldn't find User without an ID):
app/controllers/users_controller.rb:13:in `your_coins' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.0ms)
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:31:01 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]]
Completed 500 Internal Server Error in 18ms
ActionView::MissingTemplate (Missing template users/your_coins, application/your_coins with {:locale=>, :formats=>, :handlers=>[:erb, :builder, :raw, :ruby, :jbuilder]}. Searched in:
* "/Users/rbarisic/rails_projects/game_codes/app/views" * "/Library/Ruby/Gems/2.0.0/gems/devise-3.4.1/app/views"
):
actionpack (4.0.8) lib/action_view/path_set.rb:46:in `find' actionpack (4.0.8) lib/action_view/lookup_context.rb:122:in `find' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:35:in `determine_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:8:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:423:in `_run__222782954661712835__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__2831161720684355606__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:31:20 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 11ms (Views: 8.5ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:20 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:20 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:20 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:20 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:20 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:20 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:20 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:20 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:20 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:20 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:20 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:20 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:20 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:20 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:20 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:31:20 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:31:20 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:31:20 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:31:20 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:31:20 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:31:20 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:31:20 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:31:20 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:31:20 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:31:20 +0200
Started GET “/” for 127.0.0.1 at 2015-06-24 23:31:23 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (55.5ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.7ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.7ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143509632480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (13.8ms) Rendered widgets/_advertisement.html.erb (0.1ms) Rendered welcome/index.html.erb within layouts/application (79.4ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (3.4ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 95ms (Views: 88.4ms | ActiveRecord: 2.6ms)
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-24 23:31:23 +0200
Started GET “/” for 127.0.0.1 at 2015-06-24 23:31:35 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.1ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.2ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.6ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143467587220 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.7ms) Rendered widgets/_advertisement.html.erb (0.1ms) Rendered welcome/index.html.erb within layouts/application (29.9ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (4.5ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 45ms (Views: 41.8ms | ActiveRecord: 2.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:35 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:35 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:35 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:35 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:35 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:35 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:35 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:35 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:35 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:35 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:35 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:35 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:35 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:35 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:31:35 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:31:35 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:31:35 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:31:35 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:31:35 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:31:35 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:31:35 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:31:35 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:31:35 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:31:35 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:31:35 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-24 23:31:35 +0200
Started GET “/” for 127.0.0.1 at 2015-06-24 23:32:03 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.0ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.1ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143467587220 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (17.9ms) Rendered widgets/_advertisement.html.erb (0.1ms) Rendered welcome/index.html.erb within layouts/application (27.8ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (3.0ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 40ms (Views: 37.0ms | ActiveRecord: 1.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:03 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:03 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:03 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:03 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:03 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:03 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:03 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:03 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:03 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:03 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:03 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:03 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:03 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:03 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:03 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:03 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:03 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:03 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:03 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:03 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:03 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:03 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:03 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:03 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:03 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-24 23:32:03 +0200
Started GET “/” for 127.0.0.1 at 2015-06-24 23:32:15 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.2ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.0ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143467587220 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (20.8ms) Rendered widgets/_advertisement.html.erb (0.2ms) Rendered welcome/index.html.erb within layouts/application (31.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (3.8ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 45ms (Views: 41.4ms | ActiveRecord: 2.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:15 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:15 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:15 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:15 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:15 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:15 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:15 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:15 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:15 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:15 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:15 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:15 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:15 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:15 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:15 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:15 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:15 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:15 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:15 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:15 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:15 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:15 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:15 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:15 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:15 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-24 23:32:15 +0200
Started DELETE “/users/sign_out” for 127.0.0.1 at 2015-06-24 23:32:25 +0200 Processing by Devise::SessionsController#destroy as HTML
Parameters: {"authenticity_token"=>"wGsKSZfYAIH9cRH6R7EGWg3Pdz4CbIfQxsCf4oVxOFI="}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mSQL (0.8ms)[0m [1mUPDATE "users" SET "remember_created_at" = ?, "updated_at" = ? WHERE "users"."id" = 52[0m [["remember_created_at", nil], ["updated_at", Wed, 24 Jun 2015 21:32:25 UTC +00:00]]
[1m[35m (0.5ms)[0m commit transaction
Redirected to localhost:3000/ Completed 302 Found in 10ms (ActiveRecord: 1.6ms)
Started GET “/” for 127.0.0.1 at 2015-06-24 23:32:25 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.5ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (5.0ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.4ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143467587220 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (13.8ms) Rendered widgets/_advertisement.html.erb (0.1ms) Rendered welcome/index.html.erb within layouts/application (30.0ms) Rendered shared/_header.html.erb (2.0ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 41ms (Views: 37.9ms | ActiveRecord: 2.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:26 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:26 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:26 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:26 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:26 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:26 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:26 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:26 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:26 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:26 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:26 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:26 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:26 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:26 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:26 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:26 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:26 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:26 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:26 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:26 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:26 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:26 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:26 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:26 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:26 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-24 23:32:26 +0200
Started GET “/users/sign_in” for 127.0.0.1 at 2015-06-24 23:32:29 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (0.8ms) Rendered devise/sessions/new.html.erb within layouts/application (3.7ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 65ms (Views: 63.8ms | ActiveRecord: 0.0ms)
Started POST “/users/sign_in” for 127.0.0.1 at 2015-06-24 23:32:33 +0200 Processing by Devise::SessionsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"gAPXxD8XYGFYaHq3JR/ayILg5/Et4P7rzob6iZ9s/Vw=", "user"=>{"email"=>"peter@son.de", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'peter@son.de' ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mSQL (0.4ms)[0m [1mUPDATE "users" SET "remember_created_at" = ?, "updated_at" = ? WHERE "users"."id" = 52[0m [["remember_created_at", Wed, 24 Jun 2015 21:32:33 UTC +00:00], ["updated_at", Wed, 24 Jun 2015 21:32:33 UTC +00:00]]
[1m[35m (1.6ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mSQL (0.4ms)[0m UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 52 [["last_sign_in_at", Wed, 24 Jun 2015 15:02:44 UTC +00:00], ["current_sign_in_at", Wed, 24 Jun 2015 21:32:33 UTC +00:00], ["sign_in_count", 3], ["updated_at", Wed, 24 Jun 2015 21:32:33 UTC +00:00]]
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
Redirected to localhost:3000/ Completed 302 Found in 76ms (ActiveRecord: 3.3ms)
Started GET “/” for 127.0.0.1 at 2015-06-24 23:32:33 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.2ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.3ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143467587220 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (13.4ms) Rendered widgets/_advertisement.html.erb (0.1ms) Rendered welcome/index.html.erb within layouts/application (24.4ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (1.8ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 36ms (Views: 32.7ms | ActiveRecord: 1.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:33 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:33 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:33 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:33 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:33 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:33 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:33 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:33 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:33 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:33 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:33 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:33 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:33 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:33 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:32:33 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:33 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:33 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:33 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:33 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:33 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:33 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:33 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:33 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:33 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:32:33 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-24 23:32:33 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:32:42 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.4ms) Rendered shared/_header.html.erb (2.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 14ms (Views: 11.8ms | ActiveRecord: 0.3ms)
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:33:12 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (2.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 12ms (Views: 9.7ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:12 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:12 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:12 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:12 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:12 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:12 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:12 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:12 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:12 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:12 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:12 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:12 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:12 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:12 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:12 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:12 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:12 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:12 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:12 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:12 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:12 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:12 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:12 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:12 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:12 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:33:24 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.1ms) Rendered shared/_header.html.erb (2.1ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 14ms (Views: 11.3ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:24 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:24 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:24 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:24 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:24 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:24 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:24 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:24 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:24 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:24 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:24 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:24 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:24 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:24 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:24 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:24 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:24 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:24 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:24 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:24 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:24 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:24 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:24 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:24 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:24 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:33:26 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.1ms) Rendered shared/_header.html.erb (2.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 12ms (Views: 10.1ms | ActiveRecord: 0.3ms)
Started GET “/users/52” for 127.0.0.1 at 2015-06-24 23:33:27 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "52"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 52]]
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 52]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (3.3ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 14ms (Views: 11.6ms | ActiveRecord: 0.6ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:33:28 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (5.3ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 16ms (Views: 13.7ms | ActiveRecord: 0.5ms)
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:33:28 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (2.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.1ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 19ms (Views: 10.0ms | ActiveRecord: 3.0ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:33:29 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (5.1ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 15ms (Views: 13.4ms | ActiveRecord: 0.5ms)
Started GET “/games” for 127.0.0.1 at 2015-06-24 23:33:30 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (12.4ms) Rendered games/index.html.erb within layouts/application (14.9ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 25ms (Views: 23.0ms | ActiveRecord: 1.2ms)
Started GET “/” for 127.0.0.1 at 2015-06-24 23:33:30 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.0ms) [1m[36mGame Load (0.5ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.7ms) Rendered widgets/_advertisement.html.erb (0.4ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143509632480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (29.9ms) Rendered widgets/_advertisement.html.erb (0.3ms) Rendered welcome/index.html.erb within layouts/application (47.1ms) [1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (5.6ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 66ms (Views: 61.2ms | ActiveRecord: 4.2ms)
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-24 23:33:30 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:33:31 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.0ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 11ms (Views: 9.2ms | ActiveRecord: 0.3ms)
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:33:46 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.0ms) Rendered shared/_header.html.erb (2.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 10ms (Views: 9.0ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:46 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:46 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:46 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:46 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:46 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:46 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:46 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:46 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:46 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:46 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:46 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:46 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:46 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:46 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:33:46 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:46 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:46 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:46 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:46 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:46 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:46 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:46 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:46 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:46 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:33:46 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:33:47 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.8ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.0ms) Rendered shared/_header.html.erb (2.6ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 19ms (Views: 12.2ms | ActiveRecord: 1.1ms)
Started GET “/users/52” for 127.0.0.1 at 2015-06-24 23:33:49 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "52"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 52]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 52]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (2.8ms)
Rendered shared/_header.html.erb (0.9ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.4ms)
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:33:50 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.0ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 12ms (Views: 9.4ms | ActiveRecord: 0.3ms)
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:34:00 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.0ms) Rendered shared/_header.html.erb (71.6ms)
Completed 500 Internal Server Error in 79ms
ActionView::Template::Error (undefined local variable or method `your_coins' for #<#<Class:0x007f971dcf92c8>:0x007f971e8cf9f8>):
35: <% end %> 36: </li> 37: 38: <li id"<%= active!(your_coins) %>"> 39: <!-- <span class="badge secondary">Your Coins: Test </span> --> 40: <%= link_to coins_path do %> 41: <%= fa_icon 'circle', class: 'fa-fw' %> <span>Your Coins: <%= current_user.coins %></span> app/views/shared/_header.html.erb:38:in `_app_views_shared__header_html_erb__588942961790974206_70143514849980' app/views/layouts/application.html.erb:19:in `_app_views_layouts_application_html_erb___229996220844653232_70143514568140' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.9ms)
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:34:02 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.0ms) Rendered shared/_header.html.erb (2.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 12ms (Views: 9.3ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:02 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:02 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:02 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:02 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:02 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:02 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:02 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:02 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:02 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:02 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:02 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:02 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:02 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:02 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:02 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:34:02 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:34:02 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:34:02 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:34:02 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:34:02 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:34:02 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:34:02 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:34:02 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:34:02 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:34:02 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:34:23 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.0ms) Rendered shared/_header.html.erb (50.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 60ms (Views: 57.6ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:23 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:23 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:23 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:23 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:23 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:23 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:23 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:23 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:23 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:23 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:23 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:23 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:23 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:23 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:34:23 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:34:23 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:34:23 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:34:23 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:34:23 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:34:23 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:34:23 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:34:23 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:34:23 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:34:23 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:34:23 +0200
Started GET “/users/52” for 127.0.0.1 at 2015-06-24 23:34:24 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "52"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 52]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 52]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (3.0ms)
Rendered shared/_header.html.erb (1.9ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 15ms (Views: 13.2ms | ActiveRecord: 0.4ms)
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:34:25 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.1ms) Rendered shared/_header.html.erb (2.4ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 18ms (Views: 13.0ms | ActiveRecord: 0.7ms)
Started GET “/users/52” for 127.0.0.1 at 2015-06-24 23:34:28 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "52"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 52]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 52]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (3.8ms)
Rendered shared/_header.html.erb (0.9ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 15ms (Views: 13.2ms | ActiveRecord: 0.5ms)
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:34:28 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.0ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 14ms (Views: 10.2ms | ActiveRecord: 0.6ms)
Started GET “/” for 127.0.0.1 at 2015-06-24 23:34:33 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.0ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.2ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143509632480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (11.7ms) Rendered widgets/_advertisement.html.erb (0.1ms) Rendered welcome/index.html.erb within layouts/application (22.5ms) [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (1.7ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 35ms (Views: 32.7ms | ActiveRecord: 1.6ms)
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-24 23:34:33 +0200
Started GET “/games” for 127.0.0.1 at 2015-06-24 23:34:34 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (12.5ms) Rendered games/index.html.erb within layouts/application (15.2ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 26ms (Views: 23.8ms | ActiveRecord: 1.2ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:34:34 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (5.5ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 17ms (Views: 14.2ms | ActiveRecord: 0.5ms)
Started GET “/users/52” for 127.0.0.1 at 2015-06-24 23:34:35 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "52"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 52]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 52]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (3.1ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 45ms (Views: 43.3ms | ActiveRecord: 0.5ms)
Started GET “/games” for 127.0.0.1 at 2015-06-24 23:34:36 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.6ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.6ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (102.8ms) Rendered games/index.html.erb within layouts/application (108.0ms) Rendered shared/_header.html.erb (1.7ms) Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 123ms (Views: 119.4ms | ActiveRecord: 2.8ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:34:36 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (17.0ms) Rendered shared/_header.html.erb (2.4ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 33ms (Views: 29.9ms | ActiveRecord: 0.8ms)
Started GET “/games” for 127.0.0.1 at 2015-06-24 23:34:37 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (24.4ms) Rendered games/index.html.erb within layouts/application (28.1ms) Rendered shared/_header.html.erb (1.6ms) Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 42ms (Views: 38.8ms | ActiveRecord: 2.1ms)
Started GET “/users/52” for 127.0.0.1 at 2015-06-24 23:34:38 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "52"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 52]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 52]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (2.8ms)
Rendered shared/_header.html.erb (0.9ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 14ms (Views: 11.7ms | ActiveRecord: 0.5ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:34:39 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (4.9ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.5ms)
Started GET “/games” for 127.0.0.1 at 2015-06-24 23:34:39 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.6ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (23.9ms) Rendered games/index.html.erb within layouts/application (27.0ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 41ms (Views: 36.0ms | ActiveRecord: 2.9ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:34:40 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (5.3ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 20ms (Views: 17.3ms | ActiveRecord: 0.6ms)
Started GET “/users/52” for 127.0.0.1 at 2015-06-24 23:34:40 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "52"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 52]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 52]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (3.3ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 14ms (Views: 11.8ms | ActiveRecord: 0.5ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:34:41 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (5.5ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 16ms (Views: 14.3ms | ActiveRecord: 0.5ms)
Started GET “/games” for 127.0.0.1 at 2015-06-24 23:34:41 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (20.2ms) Rendered games/index.html.erb within layouts/application (24.5ms) Rendered shared/_header.html.erb (2.4ms) Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 44ms (Views: 41.0ms | ActiveRecord: 2.0ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:34:41 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (81.9ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 96ms (Views: 91.6ms | ActiveRecord: 0.9ms)
Started GET “/users/52” for 127.0.0.1 at 2015-06-24 23:34:43 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "52"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 52]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 52]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (2.9ms)
Rendered shared/_header.html.erb (2.4ms)
Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.5ms)
Started GET “/games” for 127.0.0.1 at 2015-06-24 23:34:43 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (12.1ms) Rendered games/index.html.erb within layouts/application (14.5ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 1.2ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:34:44 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (5.7ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 18ms (Views: 15.6ms | ActiveRecord: 0.5ms)
Started GET “/users/52” for 127.0.0.1 at 2015-06-24 23:34:44 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "52"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 52]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 52]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (2.7ms)
Rendered shared/_header.html.erb (0.9ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 12ms (Views: 10.7ms | ActiveRecord: 0.4ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:34:52 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (5.3ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.5ms)
Started GET “/users/52” for 127.0.0.1 at 2015-06-24 23:34:53 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "52"]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 52]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 52]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (5.0ms)
Rendered shared/_header.html.erb (1.8ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 22ms (Views: 19.0ms | ActiveRecord: 0.7ms)
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:34:54 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.1ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 15ms (Views: 12.8ms | ActiveRecord: 0.3ms)
Started GET “/users/52” for 127.0.0.1 at 2015-06-24 23:34:54 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "52"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 52]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 52]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (2.8ms)
Rendered shared/_header.html.erb (0.9ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 13ms (Views: 11.5ms | ActiveRecord: 0.6ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:34:55 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (5.6ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 16ms (Views: 13.8ms | ActiveRecord: 0.6ms)
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:34:55 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.0ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 11ms (Views: 8.5ms | ActiveRecord: 0.3ms)
Started GET “/users/52” for 127.0.0.1 at 2015-06-24 23:34:57 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "52"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 52]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 52]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (2.8ms)
Rendered shared/_header.html.erb (0.9ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 13ms (Views: 11.7ms | ActiveRecord: 0.5ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:34:57 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (8.0ms) Rendered shared/_header.html.erb (52.4ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 74ms (Views: 71.0ms | ActiveRecord: 0.7ms)
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:34:58 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.0ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 15ms (Views: 11.6ms | ActiveRecord: 0.5ms)
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:35:30 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 15ms (Views: 12.5ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:30 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:30 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:30 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:30 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:30 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:30 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:30 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:30 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:30 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:30 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:30 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:30 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:30 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:30 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:30 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:30 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:30 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:30 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:30 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:30 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:30 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:30 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:30 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:30 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:30 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:35:34 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 11ms (Views: 8.6ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:34 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:34 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:34 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:34 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:34 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:34 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:34 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:34 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:34 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:34 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:34 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:34 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:34 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:34 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:34 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:34 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:34 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:34 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:34 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:34 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:34 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:34 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:34 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:34 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:34 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:35:50 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 11ms (Views: 8.8ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:50 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:50 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:50 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:50 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:50 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:50 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:50 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:50 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:50 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:50 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:50 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:50 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:50 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:50 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:35:50 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:50 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:50 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:50 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:50 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:50 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:50 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:50 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:50 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:50 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:35:50 +0200
Started GET “/games” for 127.0.0.1 at 2015-06-24 23:35:53 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (12.3ms) Rendered games/index.html.erb within layouts/application (15.1ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 26ms (Views: 24.1ms | ActiveRecord: 1.2ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:35:54 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (56.8ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 68ms (Views: 65.6ms | ActiveRecord: 0.6ms)
Started GET “/users/52” for 127.0.0.1 at 2015-06-24 23:35:55 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "52"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 52]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 52]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (2.8ms)
Rendered shared/_header.html.erb (1.3ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 16ms (Views: 13.7ms | ActiveRecord: 0.5ms)
Started GET “/users/52” for 127.0.0.1 at 2015-06-24 23:36:15 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "52"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 52]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 52]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (4.6ms)
Rendered shared/_header.html.erb (1.4ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 47ms (Views: 45.1ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:15 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:15 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:15 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:15 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:15 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:15 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:15 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:15 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:15 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:15 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:15 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:15 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:15 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:15 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:15 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:36:15 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:36:15 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:36:15 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:36:15 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:36:15 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:36:15 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:36:15 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:36:15 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:36:15 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:36:15 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:36:17 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (2.7ms) Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 19ms (Views: 15.0ms | ActiveRecord: 0.3ms)
Started GET “/users/52” for 127.0.0.1 at 2015-06-24 23:36:20 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "52"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 52]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 52]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (2.9ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 14ms (Views: 11.8ms | ActiveRecord: 0.5ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:36:21 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.9ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (9.6ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 82ms (Views: 79.8ms | ActiveRecord: 1.3ms)
Started GET “/users/52” for 127.0.0.1 at 2015-06-24 23:36:22 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "52"]]
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 52]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 52]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (83.3ms)
Rendered shared/_header.html.erb (1.4ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 99ms (Views: 96.2ms | ActiveRecord: 0.8ms)
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:36:24 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.0ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 11ms (Views: 9.1ms | ActiveRecord: 0.3ms)
Started GET “/users/52” for 127.0.0.1 at 2015-06-24 23:36:25 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mUser Load (0.8ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "52"]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 52]]
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 52]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (5.2ms)
Rendered shared/_header.html.erb (2.4ms)
Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 22ms (Views: 17.6ms | ActiveRecord: 1.3ms)
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:36:25 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.0ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 10ms (Views: 8.3ms | ActiveRecord: 0.3ms)
Started GET “/users/52” for 127.0.0.1 at 2015-06-24 23:36:26 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "52"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 52]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 52]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (2.5ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 12ms (Views: 10.6ms | ActiveRecord: 0.4ms)
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:36:26 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.0ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 11ms (Views: 8.7ms | ActiveRecord: 0.3ms)
Started GET “/users/52” for 127.0.0.1 at 2015-06-24 23:36:27 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "52"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 52]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 52]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (2.7ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 0.5ms)
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:36:27 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.1ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 10ms (Views: 8.6ms | ActiveRecord: 0.3ms)
Started GET “/users/52” for 127.0.0.1 at 2015-06-24 23:36:28 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "52"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 52]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 52]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (2.5ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 14ms (Views: 12.4ms | ActiveRecord: 0.4ms)
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:36:28 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.0ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 10ms (Views: 8.2ms | ActiveRecord: 0.3ms)
Started GET “/users/52” for 127.0.0.1 at 2015-06-24 23:36:30 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "52"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 52]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 52]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (2.7ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 13ms (Views: 11.5ms | ActiveRecord: 0.5ms)
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:36:31 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.0ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 11ms (Views: 8.7ms | ActiveRecord: 0.3ms)
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:36:57 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.4ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 15ms (Views: 13.0ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:57 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:57 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:57 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:57 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:57 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:57 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:57 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:57 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:57 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:57 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:57 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:57 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:57 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:57 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:36:57 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:36:57 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:36:57 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:36:57 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:36:57 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:36:57 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:36:57 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:36:57 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:36:57 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:36:57 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:36:57 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:37:01 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (1.3ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 19ms (Views: 15.3ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:01 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:01 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:01 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:01 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:01 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:01 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:01 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:01 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:01 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:01 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:01 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:01 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:01 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:01 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:01 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:37:01 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:37:01 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:37:01 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:37:01 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:37:01 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:37:01 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:37:01 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:37:01 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:37:01 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:37:01 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:37:09 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.4ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 12ms (Views: 9.8ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:09 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:09 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:09 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:09 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:09 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:09 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:09 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:09 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:09 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:09 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:09 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:09 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:09 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:09 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:37:09 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:37:09 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:37:09 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:37:09 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:37:09 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:37:09 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:37:09 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:37:09 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:37:09 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:37:09 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:37:09 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:38:17 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.6ms) Rendered shared/_header.html.erb (1.7ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 21ms (Views: 16.3ms | ActiveRecord: 0.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:17 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:17 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:17 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:17 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:18 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:18 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:18 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:18 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:18 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:18 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:18 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:18 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:18 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:18 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:18 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:18 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:18 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:18 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:18 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:18 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:18 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:18 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:18 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:18 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:18 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:38:27 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.4ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 15ms (Views: 12.2ms | ActiveRecord: 0.3ms)
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:27 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:27 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:27 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:27 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:27 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:27 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:27 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:27 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:27 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:27 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:27 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:27 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:27 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:27 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:27 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:27 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:27 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:27 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:27 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:27 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:27 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:27 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:27 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:27 +0200
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:27 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:38:58 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.7ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 19ms (Views: 12.3ms | ActiveRecord: 1.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:58 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:58 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:58 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:58 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:58 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:58 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:58 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:58 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:58 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:58 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:58 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:58 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:58 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:58 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:38:58 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:58 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:58 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:58 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:58 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:58 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:58 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:58 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:58 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:58 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:38:58 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:39:06 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.6ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 18ms (Views: 15.2ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:39:06 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:39:06 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:39:06 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:39:06 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:39:06 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:39:06 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:39:06 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:39:06 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:39:06 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:39:06 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:39:06 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:39:06 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:39:06 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:39:06 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:39:06 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:39:06 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:39:06 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:39:06 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:39:06 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:39:06 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:39:06 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:39:06 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:39:06 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:39:06 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:39:06 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:41:14 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.4ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 56ms (Views: 53.6ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:41:15 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.1ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 76ms (Views: 73.1ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:15 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:41:25 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.5ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 15ms (Views: 12.7ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:25 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:25 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:25 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:25 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:26 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:26 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:26 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:26 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:26 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:26 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:26 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:26 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:26 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:26 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:26 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:26 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:26 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:26 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:26 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:26 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:26 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:26 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:26 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:26 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:26 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:41:34 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.5ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 16ms (Views: 12.5ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:34 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:34 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:34 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:34 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:34 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:34 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:34 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:34 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:34 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:34 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:34 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:34 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:34 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:34 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:34 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:34 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:34 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:34 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:34 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:34 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:34 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:34 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:34 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:34 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:34 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:41:56 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.4ms) Rendered shared/_header.html.erb (3.3ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 18ms (Views: 15.9ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:57 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:57 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:57 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:57 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:57 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:57 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:57 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:57 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:57 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:57 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:57 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:57 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:57 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:57 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:41:57 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:57 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:57 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:57 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:57 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:57 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:57 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:57 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:57 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:57 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:41:57 +0200
Started GET “/” for 127.0.0.1 at 2015-06-24 23:42:01 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.7ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.1ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.4ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143509632480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (13.6ms) Rendered widgets/_advertisement.html.erb (0.2ms) Rendered welcome/index.html.erb within layouts/application (25.4ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.1ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 37ms (Views: 34.2ms | ActiveRecord: 1.9ms)
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-24 23:42:01 +0200
Started GET “/games” for 127.0.0.1 at 2015-06-24 23:42:27 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (11.8ms) Rendered games/index.html.erb within layouts/application (14.4ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (1.4ms)
Completed 200 OK in 26ms (Views: 24.2ms | ActiveRecord: 1.2ms)
Started GET “/users/52” for 127.0.0.1 at 2015-06-24 23:42:29 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "52"]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 52]]
[1m[36mGameCode Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 52]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (6.9ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 22ms (Views: 18.3ms | ActiveRecord: 1.0ms)
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:42:31 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.4ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 12ms (Views: 10.2ms | ActiveRecord: 0.3ms)
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:42:39 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (1.0ms) Rendered shared/_header.html.erb (2.3ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 18ms (Views: 15.0ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:42:39 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:42:39 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:42:39 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:42:39 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:42:39 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:42:39 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:42:39 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:42:39 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:42:39 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:42:39 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:42:39 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:42:39 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:42:39 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:42:39 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:42:39 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:42:39 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:42:39 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:42:39 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:42:39 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:42:39 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:42:39 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:42:39 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:42:39 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:42:39 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:42:39 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:43:10 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.2ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 140ms (Views: 137.4ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:10 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:10 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:10 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:10 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:10 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:10 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:10 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:10 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:10 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:10 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:10 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:10 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:10 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:10 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:10 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:10 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:10 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:10 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:10 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:10 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:10 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:10 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:10 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:10 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:10 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:43:24 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.1ms) Rendered shared/_header.html.erb (1.7ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 31ms (Views: 28.5ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:24 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:24 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:24 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:24 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:24 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:24 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:24 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:24 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:24 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:24 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:24 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:24 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:24 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:24 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:24 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:24 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:24 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:24 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:24 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:24 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:24 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:24 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:24 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:24 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:24 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:43:28 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.2ms) Rendered shared/_header.html.erb (1.8ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 44ms (Views: 39.2ms | ActiveRecord: 0.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:28 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:28 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:28 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:28 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:28 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:28 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:28 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:28 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:28 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:28 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:28 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:28 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:28 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:28 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:43:28 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:28 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:28 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:28 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:28 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:28 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:28 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:28 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:28 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:28 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:43:28 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:44:39 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (297.7ms) Rendered shared/_header.html.erb (1.7ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 379ms (Views: 309.0ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:39 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:39 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:39 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:39 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:39 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:39 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:39 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:39 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:39 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:39 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:40 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:40 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:40 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:40 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:40 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:44:40 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:44:40 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:44:40 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:44:40 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:44:40 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:44:40 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:44:40 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:44:40 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:44:40 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:44:40 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:44:56 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.5ms) Rendered shared/_header.html.erb (1.9ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 14ms (Views: 12.0ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:56 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:56 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:56 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:56 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:56 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:56 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:56 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:56 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:56 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:56 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:56 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:56 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:56 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:56 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:44:56 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:44:56 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:44:56 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:44:56 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:44:56 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:44:56 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:44:56 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:44:56 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:44:56 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:44:56 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:44:56 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:45:18 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.4ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (1.1ms)
Completed 200 OK in 14ms (Views: 11.3ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:18 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:18 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:18 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:18 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:18 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:18 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:18 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:18 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:18 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:18 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:18 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:18 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:18 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:18 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:18 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:18 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:18 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:18 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:18 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:18 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:18 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:18 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:18 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:18 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:18 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:45:24 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (1.6ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 19ms (Views: 15.6ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:24 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:24 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:24 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:24 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:24 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:24 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:24 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:24 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:24 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:24 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:24 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:24 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:24 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:24 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:24 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:24 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:24 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:24 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:24 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:24 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:24 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:24 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:24 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:24 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:24 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:45:59 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.5ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 16ms (Views: 13.2ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:59 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:59 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:59 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:59 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:59 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:59 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:59 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:59 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:59 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:59 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:59 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:59 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:59 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:59 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:45:59 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:59 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:59 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:59 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:59 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:59 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:59 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:59 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:59 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:59 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:45:59 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:46:05 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.7ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 16ms (Views: 13.9ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:05 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:05 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:05 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:05 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:05 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:05 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:05 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:05 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:05 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:05 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:05 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:05 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:05 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:05 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:05 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:05 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:05 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:05 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:05 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:05 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:05 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:05 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:05 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:05 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:05 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:46:19 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.5ms) Rendered shared/_header.html.erb (4.3ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 18ms (Views: 15.5ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:19 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:19 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:19 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:19 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:19 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:19 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:19 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:19 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:19 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:19 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:19 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:19 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:19 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:19 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:19 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:19 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:19 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:19 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:19 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:19 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:19 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:19 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:19 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:19 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:19 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:46:27 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (1.1ms) Rendered shared/_header.html.erb (1.9ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 19ms (Views: 15.5ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:27 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:27 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:27 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:27 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:27 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:27 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:27 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:27 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:27 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:27 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:27 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:27 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:27 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:27 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:27 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:27 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:27 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:27 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:27 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:27 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:27 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:27 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:27 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:27 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:27 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:46:31 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (1.6ms) Rendered shared/_header.html.erb (1.6ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 18ms (Views: 15.1ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:31 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:31 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:31 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:31 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:31 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:31 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:31 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:31 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:31 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:31 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:31 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:31 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:31 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:31 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:31 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:31 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:31 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:31 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:31 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:31 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:31 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:31 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:31 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:31 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:31 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:46:49 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (1.3ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 18ms (Views: 13.9ms | ActiveRecord: 0.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:49 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:49 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:49 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:49 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:49 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:49 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:49 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:49 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:49 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:49 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:49 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:49 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:49 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:49 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:49 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:49 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:49 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:49 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:49 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:49 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:49 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:49 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:49 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:49 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:49 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:46:51 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.8ms) Rendered shared/_header.html.erb (62.9ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 80ms (Views: 76.4ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:51 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:51 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:52 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:52 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:52 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:52 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:52 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:52 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:52 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:52 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:52 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:52 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:52 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:52 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:46:52 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:52 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:52 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:52 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:52 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:52 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:52 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:52 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:52 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:52 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:46:52 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:47:06 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (1.2ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 15ms (Views: 12.7ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:47:06 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:47:06 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:47:06 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:47:06 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:47:06 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:47:06 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:47:06 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:47:06 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:47:06 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:47:06 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:47:06 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:47:06 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:47:06 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:47:06 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:47:06 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:47:06 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:47:06 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:47:06 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:47:06 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:47:06 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:47:06 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:47:06 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:47:06 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:47:06 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:47:06 +0200
Started GET “/” for 127.0.0.1 at 2015-06-24 23:47:39 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.4ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (20.4ms) [1m[35mGame Load (0.5ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (6.4ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (4.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143509632480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (28.7ms) Rendered widgets/_advertisement.html.erb (0.1ms) Rendered welcome/index.html.erb within layouts/application (66.7ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (3.8ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 94ms (Views: 81.0ms | ActiveRecord: 5.0ms)
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-24 23:47:39 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:47:50 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.5ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 48ms (Views: 45.5ms | ActiveRecord: 0.3ms)
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:48:26 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.8ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 79ms (Views: 74.7ms | ActiveRecord: 0.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:48:26 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:48:26 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:48:26 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:48:26 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:48:26 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:48:26 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:48:26 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:48:26 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:48:26 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:48:26 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:48:26 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:48:26 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:48:26 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:48:26 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:48:26 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:48:26 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:48:26 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:48:26 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:48:26 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:48:26 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:48:26 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:48:26 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:48:26 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:48:26 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:48:26 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:49:00 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.7ms) Rendered shared/_header.html.erb (1.8ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 16ms (Views: 13.8ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:00 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:00 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:00 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:00 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:00 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:00 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:00 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:00 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:00 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:00 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:00 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:00 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:00 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:00 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:00 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:00 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:00 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:00 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:00 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:00 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:00 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:00 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:00 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:00 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:00 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:49:49 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.6ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 16ms (Views: 13.0ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:49 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:49 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:49 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:49 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:49 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:49 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:49 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:49 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:49 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:49 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:49 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:49 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:49 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:49 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:49 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:49 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:49 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:49 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:49 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:49 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:49 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:49 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:49 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:49 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:49 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:49:54 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.6ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 16ms (Views: 13.1ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:54 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:54 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:54 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:54 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:54 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:54 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:54 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:54 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:54 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:54 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:54 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:54 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:54 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:54 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:49:54 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:54 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:54 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:54 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:54 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:54 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:54 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:54 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:54 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:54 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:49:54 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:50:28 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (1.3ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 16ms (Views: 13.2ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:28 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:28 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:28 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:28 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:28 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:28 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:28 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:28 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:28 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:28 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:28 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:28 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:28 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:28 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:28 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:28 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:28 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:28 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:28 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:28 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:28 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:28 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:28 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:28 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:28 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:50:35 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.7ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 15ms (Views: 12.5ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:35 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:35 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:35 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:35 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:35 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:35 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:35 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:35 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:35 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:35 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:35 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:35 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:35 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:35 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:35 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:35 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:35 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:35 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:35 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:35 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:35 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:35 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:35 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:35 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:35 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:50:49 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.6ms) Rendered shared/_header.html.erb (1.6ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 18ms (Views: 13.3ms | ActiveRecord: 0.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:49 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:49 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:49 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:49 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:49 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:49 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:49 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:49 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:49 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:49 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:49 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:49 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:49 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:49 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:50:49 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:49 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:49 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:49 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:49 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:49 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:49 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:49 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:49 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:49 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:50:49 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:51:42 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (1.3ms) Rendered shared/_header.html.erb (2.2ms) Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 21ms (Views: 18.1ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:51:42 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:51:42 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:51:42 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:51:42 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:51:42 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:51:42 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:51:42 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:51:42 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:51:42 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:51:42 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:51:42 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:51:42 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:51:42 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:51:42 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:51:42 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:51:42 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:51:42 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:51:42 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:51:42 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:51:42 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:51:42 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:51:42 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:51:42 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:51:42 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:51:42 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:52:11 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.7ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 17ms (Views: 14.0ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:11 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:11 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:11 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:11 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:11 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:11 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:11 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:11 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:11 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:11 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:11 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:11 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:11 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:11 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:11 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:11 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:11 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:11 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:11 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:11 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:11 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:11 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:11 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:11 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:12 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:52:12 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.2ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 24ms (Views: 21.2ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:12 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:12 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:12 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:12 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:12 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:12 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:12 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:12 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:12 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:12 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:12 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:12 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:13 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:13 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:13 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:13 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:13 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:13 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:13 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:13 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:13 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:13 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:13 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:13 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:13 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:52:16 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (1.4ms) Rendered shared/_header.html.erb (1.8ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 19ms (Views: 16.2ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:17 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:17 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:17 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:17 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:17 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:17 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:17 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:17 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:17 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:17 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:17 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:17 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:17 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:17 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:17 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:17 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:17 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:17 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:17 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:17 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:17 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:17 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:17 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:17 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:17 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-24 23:52:21 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.6ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 16ms (Views: 13.4ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:21 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:21 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:21 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:21 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:21 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:21 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:22 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:22 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:22 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:22 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:22 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:22 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:22 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:22 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-24 23:52:22 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:22 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:22 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:22 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:22 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:22 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:22 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:22 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:22 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:22 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-24 23:52:22 +0200
Started GET “/” for 127.0.0.1 at 2015-06-24 23:53:25 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (4.1ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.1ms) Rendered widgets/_advertisement.html.erb (0.4ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.7ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143509632480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (24.5ms) Rendered widgets/_advertisement.html.erb (0.2ms) Rendered welcome/index.html.erb within layouts/application (41.8ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.0ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 58ms (Views: 54.3ms | ActiveRecord: 2.8ms)
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-24 23:53:25 +0200
Started GET “/games” for 127.0.0.1 at 2015-06-24 23:53:26 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (13.1ms) Rendered games/index.html.erb within layouts/application (18.4ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 30ms (Views: 27.8ms | ActiveRecord: 1.3ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:53:26 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (5.4ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 16ms (Views: 14.0ms | ActiveRecord: 0.5ms)
Started GET “/users” for 127.0.0.1 at 2015-06-24 23:53:27 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (6.2ms) Rendered shared/_header.html.erb (1.6ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 20ms (Views: 17.4ms | ActiveRecord: 0.6ms)
Started GET “/” for 127.0.0.1 at 2015-06-24 23:53:27 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.2ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.6ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143509632480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (62.0ms) Rendered widgets/_advertisement.html.erb (0.2ms) Rendered welcome/index.html.erb within layouts/application (73.6ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.0ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 86ms (Views: 83.0ms | ActiveRecord: 1.7ms)
Started GET “/games” for 127.0.0.1 at 2015-06-24 23:53:28 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (26.1ms) Rendered games/index.html.erb within layouts/application (29.6ms) Rendered shared/_header.html.erb (1.7ms) Rendered shared/_footer.html.erb (1.2ms)
Completed 200 OK in 44ms (Views: 40.9ms | ActiveRecord: 2.4ms)
Started GET “/” for 127.0.0.1 at 2015-06-24 23:53:28 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.7ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.3ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (6.8ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143509632480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (21.7ms) Rendered widgets/_advertisement.html.erb (0.2ms) Rendered welcome/index.html.erb within layouts/application (39.1ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (4.5ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 58ms (Views: 53.9ms | ActiveRecord: 2.5ms)
Started GET “/games” for 127.0.0.1 at 2015-06-25 01:04:56 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (20.5ms) Rendered games/index.html.erb within layouts/application (24.6ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (1.2ms)
Completed 200 OK in 45ms (Views: 40.9ms | ActiveRecord: 2.0ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 01:04:57 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.9ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.2ms) Rendered widgets/_advertisement.html.erb (0.4ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (4.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143509632480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (22.3ms) Rendered widgets/_advertisement.html.erb (0.4ms) Rendered welcome/index.html.erb within layouts/application (41.5ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.2ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 55ms (Views: 51.4ms | ActiveRecord: 2.7ms)
Started GET “/users” for 127.0.0.1 at 2015-06-25 01:04:58 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (7.3ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 22ms (Views: 19.3ms | ActiveRecord: 0.9ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 01:04:58 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.3ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.5ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143509632480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (12.9ms) Rendered widgets/_advertisement.html.erb (0.1ms) Rendered welcome/index.html.erb within layouts/application (24.5ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.8ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 84ms (Views: 81.5ms | ActiveRecord: 1.7ms)
Started GET “/users/52” for 127.0.0.1 at 2015-06-25 01:04:59 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "52"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 52]]
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 52]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (5.1ms)
Rendered shared/_header.html.erb (2.2ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 24ms (Views: 20.4ms | ActiveRecord: 0.8ms)
Started GET “/coins” for 127.0.0.1 at 2015-06-25 01:05:00 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (1.5ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.3ms)
Started GET “/games” for 127.0.0.1 at 2015-06-25 01:05:05 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (11.5ms) Rendered games/index.html.erb within layouts/application (14.1ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 24ms (Views: 22.2ms | ActiveRecord: 1.1ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 01:05:06 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.2ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.0ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.7ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143509632480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (13.5ms) Rendered widgets/_advertisement.html.erb (0.2ms) Rendered welcome/index.html.erb within layouts/application (25.7ms) [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (1.8ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 37ms (Views: 34.6ms | ActiveRecord: 1.7ms)
Started GET “/games” for 127.0.0.1 at 2015-06-25 01:05:07 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.5ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (18.8ms) Rendered games/index.html.erb within layouts/application (22.9ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (1.1ms)
Completed 200 OK in 39ms (Views: 36.1ms | ActiveRecord: 2.0ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 01:05:07 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.8ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (6.1ms) [1m[36mGame Load (0.4ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (6.4ms) Rendered widgets/_advertisement.html.erb (0.7ms) [1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (6.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143509632480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (14.2ms) Rendered widgets/_advertisement.html.erb (0.1ms) Rendered welcome/index.html.erb within layouts/application (40.9ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (1.8ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 53ms (Views: 49.5ms | ActiveRecord: 2.8ms)
Started DELETE “/users/sign_out” for 127.0.0.1 at 2015-06-25 01:05:25 +0200 Processing by Devise::SessionsController#destroy as HTML
Parameters: {"authenticity_token"=>"IM9HywZiNqjc/dTibkd5oTSMrJi2xYMObtFQdWZsYpk="}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mSQL (0.4ms)[0m [1mUPDATE "users" SET "remember_created_at" = ?, "updated_at" = ? WHERE "users"."id" = 52[0m [["remember_created_at", nil], ["updated_at", Wed, 24 Jun 2015 23:05:25 UTC +00:00]]
[1m[35m (0.7ms)[0m commit transaction
Redirected to localhost:3000/ Completed 302 Found in 7ms (ActiveRecord: 1.3ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 01:05:25 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (4.8ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.0ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (4.9ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3319725640297747256_70143467587220 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (94.9ms) Rendered widgets/_advertisement.html.erb (0.3ms) Rendered welcome/index.html.erb within layouts/application (111.6ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 127ms (Views: 122.5ms | ActiveRecord: 2.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 01:05:26 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 01:05:26 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 01:05:26 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 01:05:26 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 01:05:26 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 01:05:26 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 01:05:26 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 01:05:26 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 01:05:26 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 01:05:26 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 01:05:26 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 01:05:26 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 01:05:26 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 01:05:26 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 01:05:26 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 01:05:26 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 01:05:26 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 01:05:26 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 01:05:26 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 01:05:26 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 01:05:26 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 01:05:26 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 01:05:26 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 01:05:26 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 01:05:26 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 15:43:37 +0200
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (74.6ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (5.1ms) Rendered widgets/_advertisement.html.erb (0.7ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (17.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (2.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (32.4ms) Rendered widgets/_advertisement.html.erb (0.2ms) Rendered welcome/index.html.erb within layouts/application (137.2ms) Rendered shared/_header.html.erb (15.6ms) Rendered shared/_splash.html.erb (1.6ms) Rendered shared/_footer.html.erb (1.1ms)
Completed 200 OK in 366ms (Views: 335.1ms | ActiveRecord: 4.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 15:43:37 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 15:43:38 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 15:43:38 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 15:43:38 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 15:43:38 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 15:43:38 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 15:43:38 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 15:43:38 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 15:43:38 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 15:43:38 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 15:43:38 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 15:43:38 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 15:43:38 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 15:43:38 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 15:43:38 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 15:43:38 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 15:43:38 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 15:43:38 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 15:43:38 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 15:43:38 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 15:43:38 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 15:43:38 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 15:43:38 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 15:43:38 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 15:43:38 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-25 15:43:38 +0200
Started GET “/assets/fontawesome-webfont.woff?v=4.3.0” for 127.0.0.1 at 2015-06-25 15:43:38 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 15:44:17 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.8ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.8ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (6.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.8ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (29.9ms) Rendered widgets/_advertisement.html.erb (0.2ms) Rendered welcome/index.html.erb within layouts/application (46.5ms) Rendered shared/_header.html.erb (4.3ms) Rendered shared/_splash.html.erb (0.3ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 125ms (Views: 121.0ms | ActiveRecord: 3.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 15:44:18 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.5ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.9ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.9ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (34.8ms) Rendered widgets/_advertisement.html.erb (0.1ms) Rendered welcome/index.html.erb within layouts/application (49.1ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 59ms (Views: 54.9ms | ActiveRecord: 3.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-25 15:44:18 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 15:44:35 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.3ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.8ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.8ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (31.1ms) Rendered widgets/_advertisement.html.erb (0.2ms) Rendered welcome/index.html.erb within layouts/application (43.8ms) Rendered shared/_header.html.erb (1.7ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 191ms (Views: 187.0ms | ActiveRecord: 2.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:35 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:35 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:35 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:35 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:35 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:35 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:35 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:35 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:35 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:35 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:35 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:35 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:35 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:35 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:35 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:35 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:35 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:35 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:35 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:35 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:35 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:35 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:35 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:35 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:35 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-25 15:44:35 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 15:44:56 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.9ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.3ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (6.4ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (22.1ms) Rendered widgets/_advertisement.html.erb (0.2ms) Rendered welcome/index.html.erb within layouts/application (38.9ms) Rendered shared/_header.html.erb (2.1ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 153ms (Views: 148.7ms | ActiveRecord: 2.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:56 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:56 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:56 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:56 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:56 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:56 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:56 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:56 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:56 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:56 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:56 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:56 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:56 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:56 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 15:44:56 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:56 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:56 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:56 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:56 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:56 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:56 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:56 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:56 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:56 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 15:44:56 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-25 15:44:56 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 15:45:02 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.3ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (4.4ms) Rendered widgets/_advertisement.html.erb (0.3ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (25.2ms) Rendered widgets/_advertisement.html.erb (0.1ms) Rendered welcome/index.html.erb within layouts/application (41.8ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 149ms (Views: 144.8ms | ActiveRecord: 3.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:02 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:02 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:02 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:02 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:02 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:02 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:02 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:02 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:02 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:02 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:02 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:02 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:02 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:02 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:02 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 15:45:02 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 15:45:02 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 15:45:02 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 15:45:02 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 15:45:02 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 15:45:02 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 15:45:02 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 15:45:02 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 15:45:02 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 15:45:02 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-25 15:45:02 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 15:45:08 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.1ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.2ms) Rendered widgets/_advertisement.html.erb (0.1ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (22.8ms) Rendered widgets/_advertisement.html.erb (0.6ms) Rendered welcome/index.html.erb within layouts/application (34.6ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 145ms (Views: 142.2ms | ActiveRecord: 2.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:08 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:08 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:08 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:08 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:08 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:08 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:08 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:08 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:08 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:08 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:08 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:08 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:08 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:08 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 15:45:08 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 15:45:08 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 15:45:08 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 15:45:08 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 15:45:08 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 15:45:08 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 15:45:08 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 15:45:08 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 15:45:08 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 15:45:08 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 15:45:08 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-25 15:45:08 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 15:46:01 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.3ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (5.2ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.7ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (19.7ms) Rendered widgets/_advertisement.html.erb (0.1ms) Rendered welcome/index.html.erb within layouts/application (34.3ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 136ms (Views: 132.8ms | ActiveRecord: 2.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:01 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:01 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:01 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:01 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:01 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:01 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:01 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:01 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:01 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:01 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:01 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:01 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:01 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:01 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:01 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:01 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:01 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:01 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:01 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:01 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:01 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:01 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:01 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:01 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:01 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-25 15:46:02 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 15:46:02 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.2ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.2ms) Rendered widgets/_advertisement.html.erb (0.1ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.7ms) Rendered widgets/_advertisement.html.erb (0.1ms) Rendered welcome/index.html.erb within layouts/application (29.1ms) Rendered shared/_header.html.erb (2.4ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 42ms (Views: 39.5ms | ActiveRecord: 2.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:02 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:02 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:02 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:02 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:02 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:02 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:02 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:02 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:02 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:02 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:02 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:02 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:02 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:02 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:02 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:02 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:02 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:02 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:02 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:02 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:02 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:02 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:02 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:02 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:02 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-25 15:46:02 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 15:46:41 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (71.6ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.6ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.4ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (26.0ms) Rendered widgets/_advertisement.html.erb (0.3ms) Rendered welcome/index.html.erb within layouts/application (109.4ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 169ms (Views: 165.3ms | ActiveRecord: 2.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:41 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:41 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:41 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:41 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:41 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:41 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:41 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:41 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:41 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:41 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:41 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:41 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:41 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:41 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:41 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:41 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:41 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:41 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:41 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:41 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:41 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:41 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:41 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:41 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:41 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-25 15:46:41 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 15:46:50 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.2ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (50.8ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (6.9ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (20.5ms) Rendered widgets/_advertisement.html.erb (0.3ms) Rendered welcome/index.html.erb within layouts/application (85.1ms) Rendered shared/_header.html.erb (1.8ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 158ms (Views: 155.1ms | ActiveRecord: 1.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:50 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:50 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:50 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:50 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:50 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:50 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:50 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:50 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:50 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:50 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:50 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:50 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:50 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:50 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 15:46:50 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:50 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:50 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:50 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:50 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:50 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:50 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:50 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:50 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:50 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 15:46:50 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-25 15:46:50 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 15:47:23 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.2ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.2ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (52.9ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (15.0ms) Rendered widgets/_advertisement.html.erb (0.2ms) Rendered welcome/index.html.erb within layouts/application (75.5ms) Rendered shared/_header.html.erb (1.7ms) Rendered shared/_splash.html.erb (0.7ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 136ms (Views: 133.3ms | ActiveRecord: 1.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 15:47:24 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 15:47:24 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 15:47:24 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 15:47:24 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 15:47:24 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 15:47:24 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 15:47:24 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 15:47:24 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 15:47:24 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 15:47:24 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 15:47:24 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 15:47:24 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 15:47:24 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 15:47:24 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 15:47:24 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 15:47:24 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 15:47:24 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 15:47:24 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 15:47:24 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 15:47:24 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 15:47:24 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 15:47:24 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 15:47:24 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 15:47:24 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 15:47:24 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-25 15:47:24 +0200
Started GET “/users/sign_in” for 127.0.0.1 at 2015-06-25 15:47:37 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (1.3ms) Rendered devise/sessions/new.html.erb within layouts/application (11.2ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 65ms (Views: 21.4ms | ActiveRecord: 0.0ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 15:47:39 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (5.5ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.1ms) Rendered widgets/_advertisement.html.erb (0.4ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (5.7ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094730320840 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (24.4ms) Rendered widgets/_advertisement.html.erb (0.2ms) Rendered welcome/index.html.erb within layouts/application (45.0ms) Rendered shared/_header.html.erb (3.6ms) Rendered shared/_splash.html.erb (1.6ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 63ms (Views: 60.0ms | ActiveRecord: 2.4ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 15:49:00 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.5ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.9ms) Rendered widgets/_advertisement.html.erb (0.4ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (4.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (26.0ms) Rendered widgets/_advertisement.html.erb (0.4ms) Rendered welcome/index.html.erb within layouts/application (40.6ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_splash.html.erb (0.7ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 56ms (Views: 52.4ms | ActiveRecord: 2.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 15:49:00 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 15:49:00 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 15:49:00 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 15:49:00 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 15:49:00 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 15:49:00 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 15:49:00 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 15:49:00 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 15:49:00 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 15:49:00 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 15:49:00 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 15:49:00 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 15:49:00 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 15:49:00 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 15:49:00 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 15:49:00 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 15:49:00 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 15:49:00 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 15:49:00 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 15:49:00 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 15:49:00 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 15:49:00 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 15:49:00 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 15:49:00 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 15:49:00 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-25 15:49:00 +0200
Started GET “/games” for 127.0.0.1 at 2015-06-25 15:58:03 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.4ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (26.1ms) Rendered games/index.html.erb within layouts/application (34.0ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (1.4ms)
Completed 200 OK in 132ms (Views: 127.9ms | ActiveRecord: 2.0ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 16:13:28 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (4.4ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (4.6ms) Rendered widgets/_advertisement.html.erb (0.3ms) [1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (17.4ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094730320840 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (51.1ms) Rendered widgets/_advertisement.html.erb (0.2ms) Rendered welcome/index.html.erb within layouts/application (84.5ms) Rendered shared/_header.html.erb (3.5ms) Rendered shared/_splash.html.erb (2.6ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 113ms (Views: 106.8ms | ActiveRecord: 5.1ms)
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-25 16:13:28 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 17:55:39 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (5.9ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.6ms) Rendered widgets/_advertisement.html.erb (0.4ms) [1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (10.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (21.6ms) Rendered widgets/_advertisement.html.erb (0.1ms) Rendered welcome/index.html.erb within layouts/application (46.3ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 58ms (Views: 54.5ms | ActiveRecord: 2.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 17:55:39 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 17:55:39 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 17:55:39 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 17:55:39 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 17:55:39 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 17:55:39 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 17:55:39 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 17:55:39 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 17:55:39 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 17:55:39 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 17:55:39 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 17:55:40 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 17:55:40 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 17:55:40 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 17:55:40 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 17:55:40 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 17:55:40 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 17:55:40 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 17:55:40 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 17:55:40 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 17:55:40 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 17:55:40 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 17:55:40 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 17:55:40 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 17:55:40 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-25 17:55:40 +0200
Started GET “/assets/fontawesome-webfont.woff?v=4.3.0” for 127.0.0.1 at 2015-06-25 17:55:40 +0200
Started GET “/games” for 127.0.0.1 at 2015-06-25 17:55:42 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (10.9ms) Rendered games/index.html.erb within layouts/application (14.1ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 25ms (Views: 23.5ms | ActiveRecord: 1.1ms)
Started GET “/games?view=listview” for 127.0.0.1 at 2015-06-25 17:55:44 +0200 Processing by GamesController#index as HTML
Parameters: {"view"=>"listview"}
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]]
[1m[36mGameCode Load (1.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]]
[1m[36mGameCode Load (0.4ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]]
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]]
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]]
Rendered games/_index_listview.html.erb (124.5ms)
Rendered games/index.html.erb within layouts/application (128.3ms)
Rendered shared/_header.html.erb (3.6ms)
Rendered shared/_footer.html.erb (2.6ms)
Completed 200 OK in 154ms (Views: 147.9ms | ActiveRecord: 5.0ms)
Started GET “/games?view=gallery” for 127.0.0.1 at 2015-06-25 17:56:28 +0200 Processing by GamesController#index as HTML
Parameters: {"view"=>"gallery"}
Rendered shared/_gallery_selector.html.erb (0.1ms)
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]]
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]]
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]]
Rendered games/_index_gallery.html.erb (16.6ms)
Rendered games/index.html.erb within layouts/application (19.4ms)
Rendered shared/_header.html.erb (1.9ms)
Rendered shared/_footer.html.erb (1.2ms)
Completed 200 OK in 34ms (Views: 31.4ms | ActiveRecord: 1.5ms)
Started GET “/games?view=listview” for 127.0.0.1 at 2015-06-25 17:56:29 +0200 Processing by GamesController#index as HTML
Parameters: {"view"=>"listview"}
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]]
[1m[36mGameCode Load (0.3ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.4ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]]
[1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]]
[1m[36mGameCode Load (0.3ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]]
[1m[36mGameCode Load (0.3ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]]
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]]
Rendered games/_index_listview.html.erb (55.3ms)
Rendered games/index.html.erb within layouts/application (58.0ms)
Rendered shared/_header.html.erb (2.3ms)
Rendered shared/_footer.html.erb (2.3ms)
Completed 200 OK in 77ms (Views: 68.3ms | ActiveRecord: 5.0ms)
Started GET “/games?view=gallery” for 127.0.0.1 at 2015-06-25 17:56:29 +0200 Processing by GamesController#index as HTML
Parameters: {"view"=>"gallery"}
Rendered shared/_gallery_selector.html.erb (0.1ms)
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]]
Rendered games/_index_gallery.html.erb (19.5ms)
Rendered games/index.html.erb within layouts/application (23.8ms)
Rendered shared/_header.html.erb (2.2ms)
Rendered shared/_footer.html.erb (1.1ms)
Completed 200 OK in 42ms (Views: 39.4ms | ActiveRecord: 1.7ms)
Started GET “/games?view=listview” for 127.0.0.1 at 2015-06-25 17:56:30 +0200 Processing by GamesController#index as HTML
Parameters: {"view"=>"listview"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]]
[1m[36mGameCode Load (0.8ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]]
[1m[36mGameCode Load (0.3ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]]
[1m[36mGameCode Load (0.5ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]]
[1m[36mGameCode Load (0.3ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]]
Rendered games/_index_listview.html.erb (47.1ms)
Rendered games/index.html.erb within layouts/application (50.3ms)
Rendered shared/_header.html.erb (1.3ms)
Rendered shared/_footer.html.erb (1.4ms)
Completed 200 OK in 66ms (Views: 59.2ms | ActiveRecord: 4.2ms)
Started GET “/users” for 127.0.0.1 at 2015-06-25 17:58:34 +0200 Processing by UsersController#index as HTML Completed 401 Unauthorized in 1ms
Started GET “/users/sign_in” for 127.0.0.1 at 2015-06-25 17:58:34 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (0.6ms) Rendered devise/sessions/new.html.erb within layouts/application (4.2ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.0ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 17:58:34 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.3ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.1ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094730320840 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (12.0ms) Rendered widgets/_advertisement.html.erb (0.1ms) Rendered welcome/index.html.erb within layouts/application (23.4ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_splash.html.erb (0.3ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 79ms (Views: 76.7ms | ActiveRecord: 1.5ms)
Started GET “/games” for 127.0.0.1 at 2015-06-25 17:58:35 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[35mGame Load (0.5ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (25.3ms) Rendered games/index.html.erb within layouts/application (29.7ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (1.2ms)
Completed 200 OK in 45ms (Views: 41.7ms | ActiveRecord: 2.2ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 17:58:35 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.8ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.3ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.6ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094730320840 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (13.3ms) Rendered widgets/_advertisement.html.erb (0.1ms) Rendered welcome/index.html.erb within layouts/application (25.8ms) Rendered shared/_header.html.erb (2.3ms) Rendered shared/_splash.html.erb (0.7ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 42ms (Views: 39.1ms | ActiveRecord: 1.6ms)
Started GET “/games” for 127.0.0.1 at 2015-06-25 17:58:36 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (18.0ms) Rendered games/index.html.erb within layouts/application (20.8ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (1.7ms)
Completed 200 OK in 36ms (Views: 33.8ms | ActiveRecord: 1.6ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 17:58:36 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.2ms) [1m[36mGame Load (0.4ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (5.0ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (5.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094730320840 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (27.4ms) Rendered widgets/_advertisement.html.erb (0.2ms) Rendered welcome/index.html.erb within layouts/application (46.1ms) Rendered shared/_header.html.erb (1.7ms) Rendered shared/_splash.html.erb (0.7ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 61ms (Views: 56.8ms | ActiveRecord: 3.1ms)
Started GET “/games” for 127.0.0.1 at 2015-06-25 17:58:37 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (18.8ms) Rendered games/index.html.erb within layouts/application (21.6ms) Rendered shared/_header.html.erb (2.9ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 41ms (Views: 38.1ms | ActiveRecord: 1.8ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 17:58:37 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.1ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.6ms) Rendered widgets/_advertisement.html.erb (0.3ms) [1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (6.8ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094730320840 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.1ms) Rendered widgets/_advertisement.html.erb (0.3ms) Rendered welcome/index.html.erb within layouts/application (34.8ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_splash.html.erb (0.3ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 48ms (Views: 45.2ms | ActiveRecord: 1.9ms)
Started GET “/games” for 127.0.0.1 at 2015-06-25 17:58:38 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.2ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (19.1ms) Rendered games/index.html.erb within layouts/application (25.1ms) Rendered shared/_header.html.erb (5.8ms) Rendered shared/_footer.html.erb (1.2ms)
Completed 200 OK in 129ms (Views: 126.1ms | ActiveRecord: 2.0ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 17:58:45 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.1ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.4ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094730320840 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (21.3ms) Rendered widgets/_advertisement.html.erb (0.2ms) Rendered welcome/index.html.erb within layouts/application (33.3ms) Rendered shared/_header.html.erb (1.7ms) Rendered shared/_splash.html.erb (0.4ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 49ms (Views: 45.9ms | ActiveRecord: 2.2ms)
Started GET “/users” for 127.0.0.1 at 2015-06-25 17:58:50 +0200 Processing by UsersController#index as HTML Completed 401 Unauthorized in 1ms
Started GET “/users/sign_in” for 127.0.0.1 at 2015-06-25 17:58:50 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (0.3ms) Rendered devise/sessions/new.html.erb within layouts/application (2.0ms) Rendered shared/_header.html.erb (2.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.0ms)
Started GET “/games” for 127.0.0.1 at 2015-06-25 18:16:41 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (17.7ms) Rendered games/index.html.erb within layouts/application (20.0ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 33ms (Views: 29.9ms | ActiveRecord: 1.9ms)
Started GET “/users/sign_in” for 127.0.0.1 at 2015-06-25 18:16:42 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (0.3ms) Rendered devise/sessions/new.html.erb within layouts/application (2.3ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms)
Started GET “/users/sign_up” for 127.0.0.1 at 2015-06-25 18:16:48 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (1.1ms) Rendered devise/registrations/new.html.erb within layouts/application (8.4ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 33ms (Views: 27.6ms | ActiveRecord: 0.0ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 18:16:58 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.3ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.5ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094730320840 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (15.3ms) Rendered widgets/_advertisement.html.erb (0.1ms) Rendered welcome/index.html.erb within layouts/application (27.3ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 38ms (Views: 35.1ms | ActiveRecord: 1.8ms)
Started GET “/users/sign_in” for 127.0.0.1 at 2015-06-25 18:17:00 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (0.3ms) Rendered devise/sessions/new.html.erb within layouts/application (2.1ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 12ms (Views: 10.9ms | ActiveRecord: 0.0ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 18:22:17 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.4ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.6ms) Rendered widgets/_advertisement.html.erb (0.3ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (4.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094730320840 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (122.8ms) Rendered widgets/_advertisement.html.erb (0.2ms) Rendered welcome/index.html.erb within layouts/application (136.9ms) Rendered shared/_header.html.erb (1.9ms) Rendered shared/_splash.html.erb (0.3ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 149ms (Views: 145.2ms | ActiveRecord: 3.7ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 18:22:40 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.4ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.0ms) Rendered widgets/_advertisement.html.erb (0.1ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.5ms) Rendered widgets/_advertisement.html.erb (0.1ms) Rendered welcome/index.html.erb within layouts/application (29.0ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_splash.html.erb (0.4ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 97ms (Views: 94.2ms | ActiveRecord: 2.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:40 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:40 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:40 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:40 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:40 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:40 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:40 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:40 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:40 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:40 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:40 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:40 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:40 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:40 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:40 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 18:22:40 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 18:22:40 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 18:22:40 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 18:22:40 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 18:22:40 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 18:22:40 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 18:22:40 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 18:22:40 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 18:22:40 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 18:22:40 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-25 18:22:40 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 18:22:49 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.4ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.5ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.8ms) Rendered widgets/_advertisement.html.erb (0.1ms) Rendered welcome/index.html.erb within layouts/application (30.2ms) Rendered shared/_header.html.erb (1.6ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 89ms (Views: 86.6ms | ActiveRecord: 2.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:49 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:49 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:49 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:49 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:49 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:49 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:49 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:49 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:49 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:49 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:49 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:49 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:49 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:49 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 18:22:49 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 18:22:49 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 18:22:49 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 18:22:49 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 18:22:49 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 18:22:49 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 18:22:49 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 18:22:49 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 18:22:49 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 18:22:49 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 18:22:49 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-25 18:22:50 +0200
Started GET “/users/47” for 127.0.0.1 at 2015-06-25 18:26:48 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"47"}
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "47"]]
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 47]]
[1m[35mGameCode Exists (0.6ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 47]]
[1m[36mGameCode Load (0.4ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 47]]
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 10]]
Rendered users/show.html.erb within layouts/application (46.3ms)
Rendered shared/_header.html.erb (2.1ms)
Rendered shared/_footer.html.erb (1.2ms)
Completed 200 OK in 80ms (Views: 72.8ms | ActiveRecord: 2.5ms)
Started GET “/games” for 127.0.0.1 at 2015-06-25 18:36:19 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (30.3ms) Rendered games/index.html.erb within layouts/application (36.7ms) Rendered shared/_header.html.erb (2.1ms) Rendered shared/_footer.html.erb (1.2ms)
Completed 200 OK in 64ms (Views: 60.2ms | ActiveRecord: 2.3ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 18:36:20 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.7ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (7.2ms) [1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (7.8ms) Rendered widgets/_advertisement.html.erb (0.7ms) [1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (14.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094730320840 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (42.9ms) Rendered widgets/_advertisement.html.erb (0.3ms) Rendered welcome/index.html.erb within layouts/application (82.0ms) Rendered shared/_header.html.erb (2.1ms) Rendered shared/_splash.html.erb (0.6ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 107ms (Views: 99.9ms | ActiveRecord: 5.1ms)
Started GET “/users” for 127.0.0.1 at 2015-06-25 18:36:21 +0200 Processing by UsersController#index as HTML Completed 401 Unauthorized in 1ms
Started GET “/users/sign_in” for 127.0.0.1 at 2015-06-25 18:36:21 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (0.4ms) Rendered devise/sessions/new.html.erb within layouts/application (2.6ms) Rendered shared/_header.html.erb (1.7ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 0.0ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 18:36:21 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.0ms) [1m[36mGame Load (0.4ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (11.3ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (6.6ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094730320840 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.7ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (36.6ms) Rendered widgets/_advertisement.html.erb (0.4ms) Rendered welcome/index.html.erb within layouts/application (65.3ms) Rendered shared/_header.html.erb (1.6ms) Rendered shared/_splash.html.erb (0.4ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 81ms (Views: 75.4ms | ActiveRecord: 4.5ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 19:09:06 +0200 Processing by WelcomeController#index as HTML
Rendered welcome/index.html.erb within layouts/application (4.8ms)
Completed 500 Internal Server Error in 7ms
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:21: syntax error, unexpected '<'
</div> ^
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:24: unknown regexp options - wt end pattern with unmatched parenthesis: /div>
<div class="pure-u-1 pure-u-md-1-2">
';@output_buffer.append=( render 'widgets/
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:24: syntax error, unexpected tIDENTIFIER, expecting ')' …=( render 'widgets/newest_users' );@output_buffer.safe_appen… … ^ /Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:25: syntax error, unexpected '<', expecting ')'
</div> ^
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:28: unknown regexp options - tp end pattern with unmatched parenthesis: /div>
<div class="pure-u-1 pure-u-md-1-2">
';@output_buffer.append=( render 'widgets/
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:28: syntax error, unexpected tIDENTIFIER, expecting ')' …end=( render 'widgets/top_users' );@output_buffer.safe_appen… … ^ /Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:29: syntax error, unexpected '<', expecting ')'
</div> ^
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:32: unknown regexp options - advrtt end pattern with unmatched parenthesis: /div>
<div class="pure-u-1 pure-u-md-1-2">
';@output_buffer.append=( render 'widgets/mi
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:32: syntax error, unexpected tSTRING_BEG, expecting ')' … render 'widgets/advertisement' );@output_buffer.safe_append… … ^ /Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:33: syntax error, unexpected '<', expecting ')'
</div> ^
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:37: unknown regexp options - dv /Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:38: syntax error, unexpected '<'
<div class="content"> ^
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:40: syntax error, unexpected '<'
</div> ^
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:41: unknown regexp options - dv /Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:42: syntax error, unexpected '<'
</div> ^
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:44: unknown regexp options - dv /Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:45: syntax error, unexpected '<' </div>';@output_buffer.to_s
^
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:45: unterminated regexp meets end of file):
actionpack (4.0.8) lib/action_view/template.rb:299:in `module_eval' actionpack (4.0.8) lib/action_view/template.rb:299:in `compile' actionpack (4.0.8) lib/action_view/template.rb:248:in `block in compile!' actionpack (4.0.8) lib/action_view/template.rb:236:in `synchronize' actionpack (4.0.8) lib/action_view/template.rb:236:in `compile!' actionpack (4.0.8) lib/action_view/template.rb:142:in `block in render' activesupport (4.0.8) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.8) lib/action_view/template.rb:141:in `render' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:423:in `_run__1098327094410763122__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__3730132118717047523__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.7ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 19:09:06 +0200 Processing by WelcomeController#index as HTML
Rendered welcome/index.html.erb within layouts/application (0.6ms)
Completed 500 Internal Server Error in 3ms
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:21: syntax error, unexpected '<'
</div> ^
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:24: unknown regexp options - wt end pattern with unmatched parenthesis: /div>
<div class="pure-u-1 pure-u-md-1-2">
';@output_buffer.append=( render 'widgets/
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:24: syntax error, unexpected tIDENTIFIER, expecting ')' …=( render 'widgets/newest_users' );@output_buffer.safe_appen… … ^ /Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:25: syntax error, unexpected '<', expecting ')'
</div> ^
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:28: unknown regexp options - tp end pattern with unmatched parenthesis: /div>
<div class="pure-u-1 pure-u-md-1-2">
';@output_buffer.append=( render 'widgets/
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:28: syntax error, unexpected tIDENTIFIER, expecting ')' …end=( render 'widgets/top_users' );@output_buffer.safe_appen… … ^ /Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:29: syntax error, unexpected '<', expecting ')'
</div> ^
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:32: unknown regexp options - advrtt end pattern with unmatched parenthesis: /div>
<div class="pure-u-1 pure-u-md-1-2">
';@output_buffer.append=( render 'widgets/mi
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:32: syntax error, unexpected tSTRING_BEG, expecting ')' … render 'widgets/advertisement' );@output_buffer.safe_append… … ^ /Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:33: syntax error, unexpected '<', expecting ')'
</div> ^
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:37: unknown regexp options - dv /Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:38: syntax error, unexpected '<'
<div class="content"> ^
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:40: syntax error, unexpected '<'
</div> ^
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:41: unknown regexp options - dv /Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:42: syntax error, unexpected '<'
</div> ^
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:44: unknown regexp options - dv /Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:45: syntax error, unexpected '<' </div>';@output_buffer.to_s
^
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/index.html.erb:45: unterminated regexp meets end of file):
actionpack (4.0.8) lib/action_view/template.rb:299:in `module_eval' actionpack (4.0.8) lib/action_view/template.rb:299:in `compile' actionpack (4.0.8) lib/action_view/template.rb:248:in `block in compile!' actionpack (4.0.8) lib/action_view/template.rb:236:in `synchronize' actionpack (4.0.8) lib/action_view/template.rb:236:in `compile!' actionpack (4.0.8) lib/action_view/template.rb:142:in `block in render' activesupport (4.0.8) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.8) lib/action_view/template.rb:141:in `render' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:423:in `_run__1098327094410763122__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__3730132118717047523__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.1ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 19:09:13 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.5ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.3ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (20.2ms) Rendered widgets/_advertisement.html.erb (0.2ms) Rendered welcome/index.html.erb within layouts/application (32.4ms) Rendered shared/_header.html.erb (3.1ms) Rendered shared/_splash.html.erb (0.4ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 48ms (Views: 45.0ms | ActiveRecord: 2.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:13 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:13 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:13 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:13 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:13 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:13 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:13 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:13 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:13 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:13 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:13 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:13 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:13 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:13 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:13 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:13 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:13 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:13 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:13 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:13 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:13 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:13 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:13 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:13 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:13 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-25 19:09:14 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 19:09:14 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.0ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.0ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (20.0ms) Rendered widgets/_advertisement.html.erb (0.1ms) Rendered welcome/index.html.erb within layouts/application (30.5ms) Rendered shared/_header.html.erb (2.0ms) Rendered shared/_splash.html.erb (0.5ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 44ms (Views: 40.6ms | ActiveRecord: 2.1ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:14 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:14 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:14 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:14 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:14 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:14 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:14 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:14 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:14 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:14 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:14 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:14 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:14 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:14 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:14 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:14 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:14 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:14 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:14 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:14 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:14 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:14 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:14 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:14 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:14 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-25 19:09:14 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 19:09:25 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.2ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (19.1ms) Rendered welcome/index.html.erb within layouts/application (28.6ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 40ms (Views: 36.9ms | ActiveRecord: 2.1ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:26 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:26 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:26 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:26 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:26 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:26 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:26 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:26 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:26 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:26 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:26 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:26 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:26 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:26 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:09:26 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:26 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:26 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:26 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:26 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:26 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:26 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:26 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:26 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:26 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:09:26 +0200
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Migrating to AddCoinMultiplierToGames (20150625171014)
[1m[35m (0.1ms)[0m begin transaction
[1m[36m (0.7ms)[0m [1mALTER TABLE "games" ADD "coin_multiplier" integer DEFAULT 1[0m
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150625171014"]]
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
Started GET “/” for 127.0.0.1 at 2015-06-25 19:11:23 +0200
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.7ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (116.1ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (3.5ms) [1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (28.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (2.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (36.4ms) Rendered welcome/index.html.erb within layouts/application (188.3ms) Rendered shared/_header.html.erb (3.6ms) Rendered shared/_splash.html.erb (0.3ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 226ms (Views: 204.4ms | ActiveRecord: 8.1ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:11:23 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:11:23 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:11:23 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:11:23 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:11:23 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:11:23 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:11:23 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:11:23 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:11:23 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:11:23 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:11:23 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:11:23 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:11:23 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:11:23 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:11:23 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:11:23 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:11:23 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:11:23 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:11:23 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:11:23 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:11:23 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:11:23 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:11:23 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:11:23 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:11:23 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 19:12:03 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.3ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.6ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (25.3ms) Rendered welcome/index.html.erb within layouts/application (36.4ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 52ms (Views: 48.6ms | ActiveRecord: 2.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:03 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:03 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:03 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:03 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:03 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:03 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:03 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:03 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:03 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:03 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:03 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:03 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:03 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:03 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:03 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:03 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:03 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:03 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:03 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:03 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:03 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:03 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:03 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:03 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:03 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 19:12:09 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.2ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.4ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.6ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.8ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (33.6ms) Rendered welcome/index.html.erb within layouts/application (108.8ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_splash.html.erb (0.3ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 120ms (Views: 115.7ms | ActiveRecord: 3.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:09 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:09 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:09 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:09 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:09 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:09 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:09 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:09 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:09 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:09 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:09 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:09 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:09 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:09 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:09 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:09 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:09 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:09 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:09 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:09 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:09 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:09 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:09 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:09 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:09 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 19:12:14 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.3ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (27.3ms) Rendered welcome/index.html.erb within layouts/application (40.3ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 55ms (Views: 51.1ms | ActiveRecord: 2.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:14 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:14 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:14 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:14 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:14 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:14 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:14 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:14 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:14 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:14 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:14 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:14 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:14 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:14 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:14 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:14 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:14 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:14 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:14 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:14 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:14 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:14 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:14 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:14 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:14 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 19:12:20 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.6ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.8ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (45.4ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (19.7ms) Rendered welcome/index.html.erb within layouts/application (73.2ms) Rendered shared/_header.html.erb (2.1ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 88ms (Views: 84.5ms | ActiveRecord: 2.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:20 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:20 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:20 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:20 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:20 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:20 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:20 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:20 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:20 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:20 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:20 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:20 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:20 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:20 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:20 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:20 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:20 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:20 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:20 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:20 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:20 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:20 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:20 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:20 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:20 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 19:12:42 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.3ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (19.3ms) Rendered welcome/index.html.erb within layouts/application (29.4ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 41ms (Views: 38.3ms | ActiveRecord: 2.1ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:42 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:42 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:42 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:42 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:42 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:42 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:42 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:42 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:42 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:42 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:43 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:43 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:43 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:43 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:43 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:43 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:43 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:43 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:43 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:43 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:43 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:43 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:43 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:43 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:43 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 19:12:50 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.3ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.0ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (21.6ms) Rendered welcome/index.html.erb within layouts/application (31.3ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 43ms (Views: 40.1ms | ActiveRecord: 2.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:50 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:50 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:50 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:50 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:50 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:50 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:50 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:50 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:50 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:50 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:50 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:50 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:50 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:50 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:12:50 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:50 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:50 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:50 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:50 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:50 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:50 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:50 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:50 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:50 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:12:50 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 19:13:23 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.5ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.4ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.9ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (82.3ms) Rendered welcome/index.html.erb within layouts/application (93.6ms) Rendered shared/_header.html.erb (1.7ms) Rendered shared/_splash.html.erb (0.3ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 107ms (Views: 103.3ms | ActiveRecord: 2.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:23 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:23 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:23 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:23 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:23 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:24 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:24 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:24 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:24 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:24 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:24 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:24 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:24 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:24 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:24 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:13:24 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:13:24 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:13:24 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:13:24 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:13:24 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:13:24 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:13:24 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:13:24 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:13:24 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:13:24 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:13:38 +0200
ActionController::RoutingError (No route matches [GET] “/help”):
actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (59.5ms)
Started GET “/help.html.erb” for 127.0.0.1 at 2015-06-25 19:13:41 +0200
ActionController::RoutingError (No route matches [GET] “/help.html.erb”):
actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (44.5ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:13:45 +0200
ActionController::RoutingError (No route matches [GET] “/help”):
actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (40.7ms)
Started GET “/welcome/help” for 127.0.0.1 at 2015-06-25 19:13:58 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (6.6ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:58 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:58 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:58 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:58 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:58 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:58 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:58 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:58 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:58 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:58 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:58 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:58 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:58 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:58 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:13:58 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:13:58 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:13:58 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:13:58 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:13:58 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:13:58 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:13:58 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:13:58 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:13:58 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:13:58 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:13:58 +0200
Started GET “/welcome/help” for 127.0.0.1 at 2015-06-25 19:14:05 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.1ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 13ms (Views: 10.6ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:06 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:06 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:06 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:06 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:06 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:06 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:06 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:06 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:06 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:06 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:06 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:06 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:06 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:06 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:06 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:06 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:06 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:06 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:06 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:06 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:06 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:06 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:06 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:06 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:06 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:14:08 +0200
ActionController::RoutingError (No route matches [GET] “/help”):
actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (43.6ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:14:16 +0200
ActionController::RoutingError (No route matches [GET] “/help”):
actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (46.2ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:14:17 +0200
ActionController::RoutingError (No route matches [GET] “/help”):
actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (52.0ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:14:17 +0200
ActionController::RoutingError (No route matches [GET] “/help”):
actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (46.6ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:14:28 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.1ms) Rendered shared/_header.html.erb (1.6ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 16ms (Views: 13.7ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:28 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:28 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:28 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:28 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:28 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:28 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:28 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:28 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:28 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:28 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:28 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:28 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:28 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:28 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:28 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:28 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:28 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:28 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:28 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:28 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:28 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:28 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:28 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:28 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:28 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:14:37 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.5ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 14ms (Views: 9.8ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:37 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:37 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:37 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:37 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:37 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:37 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:37 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:37 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:37 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:37 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:37 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:37 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:38 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:38 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:38 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:38 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:38 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:38 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:38 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:38 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:38 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:38 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:38 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:38 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:38 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:14:44 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:44 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:44 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:44 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:44 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:44 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:44 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:44 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:44 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:44 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:44 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:44 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:44 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:44 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:44 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:44 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:44 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:44 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:44 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:44 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:44 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:44 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:44 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:44 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:44 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:44 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:14:48 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.6ms) Rendered shared/_header.html.erb (1.6ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:48 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:48 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:48 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:48 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:48 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:48 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:48 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:48 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:48 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:48 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:48 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:48 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:48 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:48 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:14:48 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:48 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:48 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:48 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:48 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:48 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:48 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:48 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:48 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:48 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:14:48 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:15:05 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 10ms (Views: 9.1ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:05 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:05 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:05 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:05 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:05 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:05 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:05 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:05 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:05 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:05 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:05 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:05 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:05 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:05 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:05 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:05 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:05 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:05 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:05 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:05 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:05 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:05 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:05 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:05 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:05 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:15:25 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:25 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:25 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:25 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:25 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:25 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:25 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:25 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:25 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:25 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:25 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:25 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:25 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:25 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:26 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:26 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:26 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:26 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:26 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:26 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:26 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:26 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:26 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:26 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:26 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:26 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:15:34 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.9ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:35 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:35 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:35 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:35 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:35 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:35 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:35 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:35 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:35 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:35 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:35 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:35 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:35 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:35 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:35 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:35 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:35 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:35 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:35 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:35 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:35 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:35 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:35 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:35 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:35 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:15:38 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:38 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:38 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:38 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:38 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:38 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:38 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:38 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:38 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:38 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:38 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:38 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:38 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:38 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:38 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:15:38 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:38 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:38 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:38 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:38 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:38 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:38 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:38 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:38 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:38 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:15:39 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:16:07 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.8ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:07 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:07 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:07 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:07 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:07 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:07 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:07 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:07 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:07 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:07 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:07 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:07 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:07 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:07 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:07 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:16:07 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:16:07 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:16:07 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:16:07 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:16:07 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:16:07 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:16:07 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:16:07 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:16:07 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:16:07 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:16:21 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.8ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 74ms (Views: 73.9ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:21 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:21 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:21 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:21 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:21 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:21 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:21 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:21 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:21 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:21 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:21 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:21 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:21 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:22 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:16:22 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:16:22 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:16:22 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:16:22 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:16:22 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:16:22 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:16:22 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:16:22 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:16:22 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:16:22 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:16:22 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:17:09 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.4ms) Rendered shared/_header.html.erb (2.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 12ms (Views: 11.0ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:09 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:09 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:09 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:09 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:09 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:09 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:09 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:09 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:09 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:09 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:09 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:09 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:09 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:09 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:09 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:17:09 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:17:09 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:17:09 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:17:09 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:17:09 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:17:09 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:17:09 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:17:09 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:17:09 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:17:09 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:17:35 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.4ms) Rendered shared/_header.html.erb (2.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:35 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:35 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:35 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:35 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:35 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:35 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:35 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:35 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:35 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:35 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:35 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:35 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:35 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:35 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:17:35 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:17:35 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:17:35 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:17:35 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:17:35 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:17:35 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:17:35 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:17:35 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:17:35 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:17:35 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:17:35 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:18:09 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.4ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:09 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:09 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:09 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:09 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:09 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:09 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:09 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:09 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:09 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:09 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:09 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:09 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:09 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:09 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:09 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:09 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:09 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:09 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:09 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:09 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:09 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:09 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:09 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:09 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:09 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:18:18 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.4ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:18 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:18 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:18 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:18 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:18 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:18 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:18 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:18 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:18 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:18 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:18 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:18 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:18 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:18 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:18 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:18 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:18 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:18 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:18 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:18 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:18 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:18 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:18 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:18 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:18 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:18:25 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.4ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:25 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:25 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:25 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:25 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:25 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:25 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:25 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:25 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:25 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:25 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:25 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:25 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:25 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:25 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:25 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:25 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:25 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:25 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:25 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:25 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:25 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:25 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:25 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:25 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:25 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:18:42 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.6ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:42 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:42 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:42 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:42 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:42 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:42 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:42 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:43 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:43 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:43 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:43 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:43 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:43 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:43 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:18:43 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:43 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:43 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:43 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:43 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:43 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:43 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:43 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:43 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:43 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:18:43 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:19:06 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.6ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:06 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:06 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:06 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:06 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:06 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:06 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:06 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:06 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:06 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:06 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:06 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:06 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:06 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:06 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:06 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:19:06 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:19:06 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:19:06 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:19:06 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:19:06 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:19:06 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:19:06 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:19:06 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:19:06 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:19:06 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:19:12 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.6ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:12 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:12 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:12 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:12 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:12 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:12 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:12 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:12 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:12 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:12 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:12 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:12 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:12 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:12 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:19:12 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:19:12 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:19:12 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:19:12 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:19:12 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:19:12 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:19:12 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:19:12 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:19:12 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:19:12 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:19:12 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:20:20 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.6ms) Rendered shared/_header.html.erb (1.9ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 11ms (Views: 10.7ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:20:20 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:20:20 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:20:20 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:20:20 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:20:20 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:20:20 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:20:20 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:20:20 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:20:20 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:20:20 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:20:20 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:20:20 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:20:20 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:20:20 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:20:20 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:20:20 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:20:20 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:20:20 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:20:20 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:20:20 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:20:20 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:20:20 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:20:20 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:20:20 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:20:20 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:21:51 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (1.0ms) Rendered shared/_header.html.erb (2.2ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:21:51 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:21:51 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:21:52 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:21:52 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:21:52 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:21:52 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:21:52 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:21:52 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:21:52 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:21:52 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:21:52 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:21:52 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:21:52 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:21:52 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:21:52 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:21:52 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:21:52 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:21:52 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:21:52 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:21:52 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:21:52 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:21:52 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:21:52 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:21:52 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:21:52 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:22:19 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (1.6ms) Rendered shared/_header.html.erb (2.0ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 22ms (Views: 21.1ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:19 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:19 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:19 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:19 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:19 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:19 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:19 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:19 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:19 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:19 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:19 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:19 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:19 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:19 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:19 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:22:19 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:22:19 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:22:19 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:22:19 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:22:19 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:22:19 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:22:19 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:22:19 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:22:19 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:22:19 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:22:40 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.7ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:40 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:40 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:40 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:40 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:40 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:40 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:40 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:40 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:40 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:40 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:40 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:40 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:40 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:40 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:22:40 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:22:40 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:22:40 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:22:40 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:22:40 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:22:40 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:22:40 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:22:40 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:22:40 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:22:40 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:22:40 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:23:03 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (1.0ms) Rendered shared/_header.html.erb (1.8ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 19ms (Views: 17.7ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:03 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:03 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:03 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:03 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:03 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:03 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:03 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:03 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:03 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:03 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:03 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:03 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:03 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:03 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:03 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:03 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:03 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:03 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:03 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:03 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:03 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:03 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:03 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:03 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:03 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:23:17 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (1.4ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:17 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:17 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:17 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:17 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:17 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:17 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:17 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:17 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:17 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:17 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:17 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:17 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:18 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:18 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:18 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:18 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:18 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:18 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:18 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:18 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:18 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:18 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:18 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:18 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:18 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:23:24 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (1.2ms) Rendered shared/_header.html.erb (1.8ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 99ms (Views: 98.5ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:24 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:24 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:24 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:24 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:24 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:24 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:24 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:24 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:24 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:24 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:24 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:24 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:24 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:24 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:24 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:24 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:24 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:24 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:24 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:24 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:24 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:24 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:24 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:24 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:24 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:23:49 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.7ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:49 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:49 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:49 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:49 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:49 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:49 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:49 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:49 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:49 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:49 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:49 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:49 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:49 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:49 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:23:49 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:49 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:49 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:49 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:49 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:49 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:49 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:49 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:49 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:49 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:23:49 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:24:09 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.8ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:24:09 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:24:09 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:24:09 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:24:09 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:24:09 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:24:09 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:24:09 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:24:09 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:24:09 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:24:09 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:24:09 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:24:09 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:24:09 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:24:09 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:24:09 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:24:09 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:24:10 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:24:10 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:24:10 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:24:10 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:24:10 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:24:10 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:24:10 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:24:10 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:24:10 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:28:24 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (1.4ms) Rendered shared/_header.html.erb (2.7ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 31ms (Views: 30.1ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:24 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:24 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:24 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:24 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:24 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:24 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:24 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:24 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:24 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:24 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:24 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:24 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:25 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:25 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:25 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:25 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:25 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:25 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:25 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:25 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:25 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:25 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:25 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:25 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:25 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:28:34 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (1.0ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:34 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:34 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:34 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:34 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:35 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:35 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:35 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:35 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:35 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:35 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:35 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:35 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:35 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:35 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:35 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:35 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:35 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:35 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:35 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:35 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:35 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:35 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:35 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:35 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:35 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:28:41 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (1.1ms) Rendered shared/_header.html.erb (1.6ms) Rendered shared/_footer.html.erb (2.6ms)
Completed 200 OK in 19ms (Views: 17.7ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:41 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:41 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:41 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:41 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:41 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:41 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:41 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:41 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:41 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:41 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:41 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:41 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:41 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:41 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:28:41 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:41 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:41 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:41 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:41 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:41 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:41 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:41 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:41 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:41 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:28:41 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:43:38 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:28: syntax error, unexpected tSYMBEG
def annotated_tag(tag, text, :class)
^
/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:29: syntax error, unexpected '.' .…to_id_safe}" class="#{class.to_s if class != nil}"“> … ^ /Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:29: syntax error, unexpected != …lass="#{class.to_s if class != nil}"”> … ^ /Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:30: syntax error, unexpected keyword_end):
app/controllers/application_controller.rb:1:in `<top (required)>' app/controllers/welcome_controller.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.0ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:44:21 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:28: syntax error, unexpected tSYMBEG
def annotated_tag(tag, text, :class)
^
/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:29: syntax error, unexpected '.' .…to_id_safe}" class="#{class.to_s if class != nil}">“ + t… … ^ /Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:29: syntax error, unexpected != …lass="#{class.to_s if class != nil}">” + text.to_s + “</#{… … ^ /Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:31: syntax error, unexpected keyword_end, expecting end-of-input):
app/controllers/application_controller.rb:1:in `<top (required)>' app/controllers/welcome_controller.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.9ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:44:22 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:28: syntax error, unexpected tSYMBEG
def annotated_tag(tag, text, :class)
^
/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:29: syntax error, unexpected '.' .…to_id_safe}" class="#{class.to_s if class != nil}">“ + t… … ^ /Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:29: syntax error, unexpected != …lass="#{class.to_s if class != nil}">” + text.to_s + “</#{… … ^ /Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:31: syntax error, unexpected keyword_end, expecting end-of-input):
app/controllers/application_controller.rb:1:in `<top (required)>' app/controllers/welcome_controller.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.8ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:44:35 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:29: syntax error, unexpected '.' .…to_id_safe}" class="#{class.to_s if class != nil}">“ + t… … ^ /Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:29: syntax error, unexpected != …lass="#{class.to_s if class != nil}">” + text.to_s + “</#{… … ^):
app/controllers/application_controller.rb:1:in `<top (required)>' app/controllers/welcome_controller.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.3ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:45:29 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:29: syntax error, unexpected '.' .…to_id_safe}" class="#{class.to_s if class != nil}">“ + t… … ^ /Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:29: syntax error, unexpected != …lass="#{class.to_s if class != nil}">” + text.to_s + “</#{… … ^):
app/controllers/application_controller.rb:1:in `<top (required)>' app/controllers/welcome_controller.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.7ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:45:30 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:29: syntax error, unexpected '.' .…to_id_safe}" class="#{class.to_s if class != nil}">“ + t… … ^ /Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:29: syntax error, unexpected != …lass="#{class.to_s if class != nil}">” + text.to_s + “</#{… … ^):
app/controllers/application_controller.rb:1:in `<top (required)>' app/controllers/welcome_controller.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.1ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:45:30 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:29: syntax error, unexpected '.' .…to_id_safe}" class="#{class.to_s if class != nil}">“ + t… … ^ /Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:29: syntax error, unexpected != …lass="#{class.to_s if class != nil}">” + text.to_s + “</#{… … ^):
app/controllers/application_controller.rb:1:in `<top (required)>' app/controllers/welcome_controller.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.0ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:45:42 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (1.7ms) Rendered shared/_header.html.erb (2.0ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 30ms (Views: 20.6ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:45:42 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:45:42 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:45:42 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:45:42 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:45:42 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:45:42 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:45:42 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:45:42 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:45:42 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:45:42 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:45:42 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:45:42 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:45:42 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:45:42 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:45:42 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:45:42 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:45:42 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:45:42 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:45:42 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:45:42 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:45:42 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:45:42 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:45:42 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:45:42 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:45:42 +0200
Started GET “/assets/fontawesome-webfont.woff?v=4.3.0” for 127.0.0.1 at 2015-06-25 19:45:42 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:46:01 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (1.3ms)
Completed 500 Internal Server Error in 6ms
ActionView::Template::Error (undefined method `to_id_safe' for “How can I get more Coins?”:String):
11: <b>Coins</b> enable you to advertise your Codes on the <%= link_to 'Front Page', root_path %>.
12: </p>
13:
14: <%= annotated_tag('h2','How can I get more Coins?') %>
15:
16: <h2>How can I get more Coins?</h2>
17: </h2>
app/helpers/application_helper.rb:29:in `annotated_tag'
app/views/welcome/help.html.erb:14:in `_app_views_welcome_help_html_erb___2078175126926644052_70094693759400'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.1ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:46:58 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:31: syntax error, unexpected '.' .…to_id_safe}" class="#{class.to_s if class != nil}">“ + t… … ^ /Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:31: syntax error, unexpected != …lass="#{class.to_s if class != nil}">” + text.to_s + “</#{… … ^):
app/controllers/application_controller.rb:1:in `<top (required)>' app/controllers/welcome_controller.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.1ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:47:04 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:31: syntax error, unexpected modifier_if …o_id_safe}" class="#{class if class != nil}">“ + text.to_… … ^):
app/controllers/application_controller.rb:1:in `<top (required)>' app/controllers/welcome_controller.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.9ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:47:16 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:31: syntax error, unexpected '.' .…to_id_safe}" class="#{class.to_s}">“ + text.to_s + ”</#{… … ^):
app/controllers/application_controller.rb:1:in `<top (required)>' app/controllers/welcome_controller.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.7ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:47:22 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:31: syntax error, unexpected tSTRING_DEND .…to_id_safe}" class="#{class}">“ + text.to_s + ”</#{tag.t… … ^ /Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:32: syntax error, unexpected keyword_end, expecting tSTRING_DEND):
app/controllers/application_controller.rb:1:in `<top (required)>' app/controllers/welcome_controller.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.8ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:47:25 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:31: syntax error, unexpected '.' .…to_id_safe}" class="#{class.to_s}">“ + text.to_s + ”</#{… … ^):
app/controllers/application_controller.rb:1:in `<top (required)>' app/controllers/welcome_controller.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.7ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:47:26 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:31: syntax error, unexpected '.' .…to_id_safe}" class="#{class.to_s}">“ + text.to_s + ”</#{… … ^):
app/controllers/application_controller.rb:1:in `<top (required)>' app/controllers/welcome_controller.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.1ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:47:26 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:31: syntax error, unexpected '.' .…to_id_safe}" class="#{class.to_s}">“ + text.to_s + ”</#{… … ^):
app/controllers/application_controller.rb:1:in `<top (required)>' app/controllers/welcome_controller.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.9ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:47:27 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:31: syntax error, unexpected '.' .…to_id_safe}" class="#{class.to_s}">“ + text.to_s + ”</#{… … ^):
app/controllers/application_controller.rb:1:in `<top (required)>' app/controllers/welcome_controller.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (53.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (65.6ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:48:00 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:32: syntax error, unexpected '.'
+ "id=\"\##{text.to_id_safe}\" class=\"#{class.to_s}\">"
^):
app/controllers/application_controller.rb:1:in `<top (required)>'
app/controllers/welcome_controller.rb:1:in `<top (required)>'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.8ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:48:03 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:32: syntax error, unexpected '.'
+ "id=\"\##{text.to_id_safe}\" class=\"#{class.to_s}\">"
^):
app/controllers/application_controller.rb:1:in `<top (required)>'
app/controllers/welcome_controller.rb:1:in `<top (required)>'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.6ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:48:04 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:32: syntax error, unexpected '.'
+ "id=\"\##{text.to_id_safe}\" class=\"#{class.to_s}\">"
^):
app/controllers/application_controller.rb:1:in `<top (required)>'
app/controllers/welcome_controller.rb:1:in `<top (required)>'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.6ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:48:06 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 14ms (Views: 11.1ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/fontawesome-webfont.woff?v=4.3.0” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:48:07 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 13ms (Views: 11.9ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:07 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:48:24 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.7ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 44ms (Views: 43.8ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:24 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:24 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:24 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:24 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:24 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:24 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:24 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:24 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:24 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:24 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:24 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:24 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:24 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:24 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:24 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:24 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:24 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:24 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:24 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:24 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:24 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:24 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:24 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:24 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:24 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:48:41 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:32: syntax error, unexpected '.'
+ "id=\"\##{text.to_id_safe}\" class=\"#{class.to_s}\">"
^):
app/controllers/application_controller.rb:1:in `<top (required)>'
app/controllers/welcome_controller.rb:1:in `<top (required)>'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.1ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:48:44 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:32: syntax error, unexpected '.'
+ "id=\"\##{text.to_id_safe}\" class=\"#{class.to_s}\">"
^):
app/controllers/application_controller.rb:1:in `<top (required)>'
app/controllers/welcome_controller.rb:1:in `<top (required)>'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.3ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:48:47 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 14ms (Views: 11.4ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:47 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:47 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:47 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:47 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:47 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:47 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:47 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:47 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:47 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:47 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:47 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:47 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:47 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:47 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:48:47 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:47 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:47 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:47 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:47 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:47 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:47 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:47 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:47 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:47 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:48:47 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:48:55 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:32: syntax error, unexpected '.'
+ "id=\"\##{text.to_id_safe}\" class=\"#{class.to_s}\">"
^):
app/controllers/application_controller.rb:1:in `<top (required)>'
app/controllers/welcome_controller.rb:1:in `<top (required)>'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.3ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:49:04 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.7ms)
Completed 500 Internal Server Error in 5ms
ActionView::Template::Error (undefined method `+@' for “How can I get more Coins?”:String):
11: <b>Coins</b> enable you to advertise your Codes on the <%= link_to 'Front Page', root_path %>.
12: </p>
13:
14: <%= annotated_tag('h2','How can I get more Coins?') %>
15: </h2>
16: </div>
17: </div>
app/helpers/application_helper.rb:33:in `annotated_tag'
app/views/welcome/help.html.erb:14:in `_app_views_welcome_help_html_erb___2078175126926644052_70094733025060'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.9ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:49:05 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (2.9ms)
Completed 500 Internal Server Error in 7ms
ActionView::Template::Error (undefined method `+@' for “How can I get more Coins?”:String):
11: <b>Coins</b> enable you to advertise your Codes on the <%= link_to 'Front Page', root_path %>.
12: </p>
13:
14: <%= annotated_tag('h2','How can I get more Coins?') %>
15: </h2>
16: </div>
17: </div>
app/helpers/application_helper.rb:33:in `annotated_tag'
app/views/welcome/help.html.erb:14:in `_app_views_welcome_help_html_erb___2078175126926644052_70094733025060'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.2ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:49:18 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.8ms)
Completed 500 Internal Server Error in 49ms
ActionView::Template::Error (undefined method `+@' for “How can I get more Coins?”:String):
11: <b>Coins</b> enable you to advertise your Codes on the <%= link_to 'Front Page', root_path %>.
12: </p>
13:
14: <%= annotated_tag('h2','How can I get more Coins?') %>
15: </h2>
16: </div>
17: </div>
app/helpers/application_helper.rb:33:in `annotated_tag'
app/views/welcome/help.html.erb:14:in `_app_views_welcome_help_html_erb___2078175126926644052_70094733025060'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.0ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:49:20 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.7ms)
Completed 500 Internal Server Error in 5ms
ActionView::Template::Error (undefined method `+@' for “How can I get more Coins?”:String):
11: <b>Coins</b> enable you to advertise your Codes on the <%= link_to 'Front Page', root_path %>.
12: </p>
13:
14: <%= annotated_tag('h2','How can I get more Coins?') %>
15: </h2>
16: </div>
17: </div>
app/helpers/application_helper.rb:33:in `annotated_tag'
app/views/welcome/help.html.erb:14:in `_app_views_welcome_help_html_erb___2078175126926644052_70094733025060'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.3ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:49:28 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (1.5ms)
Completed 500 Internal Server Error in 10ms
ActionView::Template::Error (undefined method `+@' for “How can I get more Coins?”:String):
11: <b>Coins</b> enable you to advertise your Codes on the <%= link_to 'Front Page', root_path %>.
12: </p>
13:
14: <%= annotated_tag('h2','How can I get more Coins?') %>
15: </h2>
16: </div>
17: </div>
app/helpers/application_helper.rb:33:in `annotated_tag'
app/views/welcome/help.html.erb:14:in `_app_views_welcome_help_html_erb___2078175126926644052_70094733025060'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.7ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:49:35 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.7ms)
Completed 500 Internal Server Error in 5ms
ActionView::Template::Error (undefined method `+@' for “How can I get more Coins?”:String):
11: <b>Coins</b> enable you to advertise your Codes on the <%= link_to 'Front Page', root_path %>.
12: </p>
13:
14: <%= annotated_tag('h2','How can I get more Coins?') %>
15: </h2>
16: </div>
17: </div>
app/helpers/application_helper.rb:33:in `annotated_tag'
app/views/welcome/help.html.erb:14:in `_app_views_welcome_help_html_erb___2078175126926644052_70094733025060'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.8ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:49:36 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (2.3ms)
Completed 500 Internal Server Error in 6ms
ActionView::Template::Error (undefined method `+@' for “How can I get more Coins?”:String):
11: <b>Coins</b> enable you to advertise your Codes on the <%= link_to 'Front Page', root_path %>.
12: </p>
13:
14: <%= annotated_tag('h2','How can I get more Coins?') %>
15: </h2>
16: </div>
17: </div>
app/helpers/application_helper.rb:33:in `annotated_tag'
app/views/welcome/help.html.erb:14:in `_app_views_welcome_help_html_erb___2078175126926644052_70094733025060'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.4ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:49:54 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.7ms)
Completed 500 Internal Server Error in 5ms
ActionView::Template::Error (undefined method `+@' for “How can I get more Coins?”:String):
11: <b>Coins</b> enable you to advertise your Codes on the <%= link_to 'Front Page', root_path %>.
12: </p>
13:
14: <%= annotated_tag('h2','How can I get more Coins?') %>
15: </h2>
16: </div>
17: </div>
app/helpers/application_helper.rb:33:in `annotated_tag'
app/views/welcome/help.html.erb:14:in `_app_views_welcome_help_html_erb___2078175126926644052_70094733025060'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.1ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:49:55 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (1.9ms)
Completed 500 Internal Server Error in 7ms
ActionView::Template::Error (undefined method `+@' for “How can I get more Coins?”:String):
11: <b>Coins</b> enable you to advertise your Codes on the <%= link_to 'Front Page', root_path %>.
12: </p>
13:
14: <%= annotated_tag('h2','How can I get more Coins?') %>
15: </h2>
16: </div>
17: </div>
app/helpers/application_helper.rb:33:in `annotated_tag'
app/views/welcome/help.html.erb:14:in `_app_views_welcome_help_html_erb___2078175126926644052_70094733025060'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.1ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:49:57 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.9ms)
Completed 500 Internal Server Error in 52ms
ActionView::Template::Error (undefined method `+@' for “How can I get more Coins?”:String):
11: <b>Coins</b> enable you to advertise your Codes on the <%= link_to 'Front Page', root_path %>.
12: </p>
13:
14: <%= annotated_tag('h2','How can I get more Coins?') %>
15: </h2>
16: </div>
17: </div>
app/helpers/application_helper.rb:33:in `annotated_tag'
app/views/welcome/help.html.erb:14:in `_app_views_welcome_help_html_erb___2078175126926644052_70094733025060'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.2ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:50:17 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.8ms)
Completed 500 Internal Server Error in 5ms
ActionView::Template::Error (undefined method `+@' for “</h2”:String):
11: <b>Coins</b> enable you to advertise your Codes on the <%= link_to 'Front Page', root_path %>.
12: </p>
13:
14: <%= annotated_tag('h2','How can I get more Coins?') %>
15: </h2>
16: </div>
17: </div>
app/helpers/application_helper.rb:33:in `annotated_tag'
app/views/welcome/help.html.erb:14:in `_app_views_welcome_help_html_erb___2078175126926644052_70094733025060'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.8ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:50:18 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (1.7ms)
Completed 500 Internal Server Error in 5ms
ActionView::Template::Error (undefined method `+@' for “</h2”:String):
11: <b>Coins</b> enable you to advertise your Codes on the <%= link_to 'Front Page', root_path %>.
12: </p>
13:
14: <%= annotated_tag('h2','How can I get more Coins?') %>
15: </h2>
16: </div>
17: </div>
app/helpers/application_helper.rb:33:in `annotated_tag'
app/views/welcome/help.html.erb:14:in `_app_views_welcome_help_html_erb___2078175126926644052_70094733025060'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.1ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:50:20 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 12ms (Views: 8.9ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:50:20 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:50:20 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:50:20 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:50:20 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:50:20 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:50:20 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:50:21 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:50:21 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:50:21 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:50:21 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:50:21 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:50:21 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:50:21 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:50:21 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:50:21 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:50:21 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:50:21 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:50:21 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:50:21 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:50:21 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:50:21 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:50:21 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:50:21 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:50:21 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:50:21 +0200
Started GET “/assets/fontawesome-webfont.woff?v=4.3.0” for 127.0.0.1 at 2015-06-25 19:50:21 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:50:29 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.8ms)
Completed 500 Internal Server Error in 5ms
ActionView::Template::Error (undefined method `+@' for “How can I get more Coins?”:String):
11: <b>Coins</b> enable you to advertise your Codes on the <%= link_to 'Front Page', root_path %>.
12: </p>
13:
14: <%= annotated_tag('h2','How can I get more Coins?') %>
15: </h2>
16: </div>
17: </div>
app/helpers/application_helper.rb:33:in `annotated_tag'
app/views/welcome/help.html.erb:14:in `_app_views_welcome_help_html_erb___2078175126926644052_70094733025060'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.9ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:50:42 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.9ms)
Completed 500 Internal Server Error in 5ms
ActionView::Template::Error (undefined method `+@' for “How can I get more Coins?”:String):
11: <b>Coins</b> enable you to advertise your Codes on the <%= link_to 'Front Page', root_path %>.
12: </p>
13:
14: <%= annotated_tag('h2','How can I get more Coins?') %>
15: </h2>
16: </div>
17: </div>
app/helpers/application_helper.rb:33:in `annotated_tag'
app/views/welcome/help.html.erb:14:in `_app_views_welcome_help_html_erb___2078175126926644052_70094733025060'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.3ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:50:43 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (1.0ms)
Completed 500 Internal Server Error in 4ms
ActionView::Template::Error (undefined method `+@' for “How can I get more Coins?”:String):
11: <b>Coins</b> enable you to advertise your Codes on the <%= link_to 'Front Page', root_path %>.
12: </p>
13:
14: <%= annotated_tag('h2','How can I get more Coins?') %>
15: </h2>
16: </div>
17: </div>
app/helpers/application_helper.rb:33:in `annotated_tag'
app/views/welcome/help.html.erb:14:in `_app_views_welcome_help_html_erb___2078175126926644052_70094733025060'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.6ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:50:48 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:32: syntax error, unexpected '.'
+ "id=\"\##{text.to_id_safe}\" class=\"#{class.to_s}\">"
^):
app/controllers/application_controller.rb:1:in `<top (required)>'
app/controllers/welcome_controller.rb:1:in `<top (required)>'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.5ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:50:56 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (1.2ms)
Completed 500 Internal Server Error in 6ms
ActionView::Template::Error (undefined method `+@' for “How can I get more Coins?”:String):
11: <b>Coins</b> enable you to advertise your Codes on the <%= link_to 'Front Page', root_path %>.
12: </p>
13:
14: <%= annotated_tag('h2','How can I get more Coins?') %>
15: </h2>
16: </div>
17: </div>
app/helpers/application_helper.rb:32:in `annotated_tag'
app/views/welcome/help.html.erb:14:in `_app_views_welcome_help_html_erb___2078175126926644052_70094733025060'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.9ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:51:05 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 12ms (Views: 9.1ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:05 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:05 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:05 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:05 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:05 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:05 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:05 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:05 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:05 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:05 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:05 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:05 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:05 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:05 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:05 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:05 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:05 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:05 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:05 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:05 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:05 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:05 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:05 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:05 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:05 +0200
Started GET “/assets/fontawesome-webfont.woff?v=4.3.0” for 127.0.0.1 at 2015-06-25 19:51:05 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:51:10 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (3.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 16ms (Views: 12.7ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:10 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:10 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:10 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:10 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:10 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:10 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:10 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:10 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:10 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:10 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:10 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:10 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:10 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:10 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:10 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:10 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:10 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:10 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:10 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:10 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:10 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:10 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:10 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:10 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:10 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:51:20 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.4ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 15ms (Views: 10.7ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:20 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:20 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:20 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:20 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:20 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:20 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:20 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:20 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:20 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:20 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:20 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:20 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:20 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:20 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:20 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:20 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:20 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:20 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:20 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:20 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:20 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:20 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:20 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:20 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:20 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:51:26 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 15ms (Views: 9.6ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:26 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:26 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:26 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:26 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:26 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:26 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:26 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:26 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:26 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:26 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:26 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:26 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:26 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:26 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:26 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:26 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:26 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:26 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:26 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:26 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:26 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:26 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:26 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:26 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:26 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:51:33 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.6ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 15ms (Views: 12.3ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:34 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:34 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:34 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:34 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:34 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:34 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:34 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:34 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:34 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:34 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:34 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:34 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:34 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:34 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:51:34 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:34 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:34 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:34 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:34 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:34 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:34 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:34 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:34 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:34 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:51:34 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:51:55 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:31: syntax error, unexpected '.' .…to_id_safe}" class="#{class.to_s}">“ + text + ”</#{tag.t… … ^):
app/controllers/application_controller.rb:1:in `<top (required)>' app/controllers/welcome_controller.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.8ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:52:03 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:31: syntax error, unexpected '.' …="##{text}" class="#{class.to_s}">“ + text + ”</#{tag.t… … ^):
app/controllers/application_controller.rb:1:in `<top (required)>' app/controllers/welcome_controller.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.2ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:52:04 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:31: syntax error, unexpected '.' …="##{text}" class="#{class.to_s}">“ + text + ”</#{tag.t… … ^):
app/controllers/application_controller.rb:1:in `<top (required)>' app/controllers/welcome_controller.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.5ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:52:06 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:31: syntax error, unexpected '.' …="##{text}" class="#{class.to_s}">“ + text + ”</#{tag.t… … ^):
app/controllers/application_controller.rb:1:in `<top (required)>' app/controllers/welcome_controller.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.1ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:52:07 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:31: syntax error, unexpected '.' …="##{text}" class="#{class.to_s}">“ + text + ”</#{tag.t… … ^):
app/controllers/application_controller.rb:1:in `<top (required)>' app/controllers/welcome_controller.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.8ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:52:07 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/application_helper.rb:31: syntax error, unexpected '.' …="##{text}" class="#{class.to_s}">“ + text + ”</#{tag.t… … ^):
app/controllers/application_controller.rb:1:in `<top (required)>' app/controllers/welcome_controller.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.7ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:52:16 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.8ms)
Completed 500 Internal Server Error in 4ms
ActionView::Template::Error (undefined method `to_id_safe' for “How can I get more Coins?”:String):
11: <b>Coins</b> enable you to advertise your Codes on the <%= link_to 'Front Page', root_path %>.
12: </p>
13:
14: <%= annotated_tag('h2','How can I get more Coins?') %>
15: </h2>
16: </div>
17: </div>
app/helpers/application_helper.rb:31:in `annotated_tag'
app/views/welcome/help.html.erb:14:in `_app_views_welcome_help_html_erb___2078175126926644052_70094733025060'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.5ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:52:22 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.7ms)
Completed 500 Internal Server Error in 5ms
ActionView::Template::Error (undefined method `to_id_safe' for “How can I get more Coins?”:String):
11: <b>Coins</b> enable you to advertise your Codes on the <%= link_to 'Front Page', root_path %>.
12: </p>
13:
14: <%= annotated_tag('h2','How can I get more Coins?') %>
15: </h2>
16: </div>
17: </div>
app/helpers/application_helper.rb:31:in `annotated_tag'
app/views/welcome/help.html.erb:14:in `_app_views_welcome_help_html_erb___2078175126926644052_70094733025060'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.0ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:52:31 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.8ms)
Completed 500 Internal Server Error in 57ms
ActionView::Template::Error (undefined method `to_id_safe' for “How can I get more Coins?”:String):
11: <b>Coins</b> enable you to advertise your Codes on the <%= link_to 'Front Page', root_path %>.
12: </p>
13:
14: <%= annotated_tag('h2','How can I get more Coins?') %>
15: </h2>
16: </div>
17: </div>
app/helpers/application_helper.rb:31:in `annotated_tag'
app/views/welcome/help.html.erb:14:in `_app_views_welcome_help_html_erb___2078175126926644052_70094733025060'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.5ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:52:35 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.9ms)
Completed 500 Internal Server Error in 8ms
ActionView::Template::Error (undefined method `to_id_safe' for “How can I get more Coins?”:String):
11: <b>Coins</b> enable you to advertise your Codes on the <%= link_to 'Front Page', root_path %>.
12: </p>
13:
14: <%= annotated_tag('h2','How can I get more Coins?') %>
15: </h2>
16: </div>
17: </div>
app/helpers/application_helper.rb:31:in `annotated_tag'
app/views/welcome/help.html.erb:14:in `_app_views_welcome_help_html_erb___2078175126926644052_70094733025060'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.7ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:53:32 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 14ms (Views: 11.0ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:32 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:32 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:32 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:32 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:32 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:32 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:32 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:32 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:32 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:32 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:32 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:32 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:32 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:32 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:32 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:32 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:32 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:32 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:32 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:32 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:32 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:32 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:32 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:32 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:32 +0200
Started GET “/assets/fontawesome-webfont.woff?v=4.3.0” for 127.0.0.1 at 2015-06-25 19:53:33 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:53:37 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.4ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 15ms (Views: 10.9ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:37 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:37 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:37 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:37 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:37 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:37 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:37 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:37 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:37 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:37 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:37 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:37 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:37 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:37 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:37 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:37 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:37 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:37 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:38 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:38 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:38 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:38 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:38 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:38 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:38 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:53:47 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 12ms (Views: 8.9ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:47 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:47 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:47 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:47 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:47 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:47 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:47 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:47 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:47 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:47 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:47 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:47 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:47 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:47 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:47 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:47 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:47 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:47 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:47 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:47 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:47 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:47 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:47 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:47 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:47 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:53:59 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 12ms (Views: 9.1ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:59 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:59 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:59 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:59 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:59 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:59 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:59 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:59 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:59 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:59 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:59 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:59 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:59 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:59 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:53:59 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:59 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:59 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:59 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:59 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:59 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:59 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:59 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:59 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:59 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:53:59 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:54:03 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.9ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 12ms (Views: 10.5ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:03 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:03 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:03 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:03 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:03 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:03 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:03 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:03 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:03 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:03 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:03 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:03 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:03 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:03 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:03 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:03 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:03 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:03 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:03 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:03 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:03 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:03 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:03 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:03 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:03 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:54:11 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.4ms) Rendered shared/_header.html.erb (1.8ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 15ms (Views: 11.4ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:11 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:11 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:11 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:11 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:11 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:11 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:11 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:11 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:11 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:11 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:11 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:11 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:11 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:11 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:11 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:11 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:11 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:11 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:11 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:11 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:11 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:11 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:11 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:11 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:11 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 19:54:25 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (2.2ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 17ms (Views: 13.8ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:25 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:25 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:25 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:25 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:25 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:25 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:25 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:25 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:25 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:25 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:25 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:25 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:25 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:25 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 19:54:25 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:25 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:25 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:25 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:25 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:25 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:25 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:25 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:25 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:25 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 19:54:25 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:03:23 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.5ms)
Completed 500 Internal Server Error in 5ms
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/views/welcome/help.html.erb:4: syntax error, unexpected '<', expecting ')'
<p>On this Site you can find a... ^
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/help.html.erb:4: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
<p>On this Site you can find answers to...
^
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/help.html.erb:6: syntax error, unexpected '<'
<div class="section" id="coins"> ^
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/help.html.erb:6: syntax error, unexpected tIDENTIFIER, expecting ')'
<div class="section" id="coins">
^
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/help.html.erb:7: syntax error, unexpected '<'
<h2>What can I do with Coins ?</h2> ^
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/help.html.erb:7: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
<h2>What can I do with Coins ?</h2>
^
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/help.html.erb:8: syntax error, unexpected '<'
<p> ^
/Users/rbarisic/rails_projects/game_codes/app/views/welcome/help.html.erb:17: syntax error, unexpected keyword_ensure, expecting keyword_end /Users/rbarisic/rails_projects/game_codes/app/views/welcome/help.html.erb:19: syntax error, unexpected end-of-input, expecting ')'):
actionpack (4.0.8) lib/action_view/template.rb:299:in `module_eval' actionpack (4.0.8) lib/action_view/template.rb:299:in `compile' actionpack (4.0.8) lib/action_view/template.rb:248:in `block in compile!' actionpack (4.0.8) lib/action_view/template.rb:236:in `synchronize' actionpack (4.0.8) lib/action_view/template.rb:236:in `compile!' actionpack (4.0.8) lib/action_view/template.rb:142:in `block in render' activesupport (4.0.8) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.8) lib/action_view/template.rb:141:in `render' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:423:in `_run__1098327094410763122__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__3730132118717047523__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.6ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:04:01 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (53.1ms)
Completed 500 Internal Server Error in 55ms
ActionView::Template::Error (undefined local variable or method `help' for #<#<Class:0x007f80657e0be8>:0x007f8067277da8>):
1: <div class="pure-layout pure-layout-960">
2: <div class="l-box">
3: <%= annotated_tag('h1', t(help.title)) %>
4: <p>On this Site you can find answers to commonly asked questions.</p>
5:
6: <div class="section" id="coins">
app/views/welcome/help.html.erb:3:in `_app_views_welcome_help_html_erb___2078175126926644052_70094731589100'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.1ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (15.7ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:04:01 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (14.3ms)
Completed 500 Internal Server Error in 17ms
ActionView::Template::Error (undefined local variable or method `help' for #<#<Class:0x007f80657e0be8>:0x007f806391bd48>):
1: <div class="pure-layout pure-layout-960">
2: <div class="l-box">
3: <%= annotated_tag('h1', t(help.title)) %>
4: <p>On this Site you can find answers to commonly asked questions.</p>
5:
6: <div class="section" id="coins">
app/views/welcome/help.html.erb:3:in `_app_views_welcome_help_html_erb___2078175126926644052_70094731589100'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.3ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:07:29 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (72.4ms)
Completed 500 Internal Server Error in 80ms
ActionView::Template::Error (undefined local variable or method `help' for #<#<Class:0x007f80671dde60>:0x007f80671dd078>):
1: <div class="pure-layout pure-layout-960">
2: <div class="l-box">
3: <%= annotated_tag('h1', t(help.title)) %>
4: <p>On this Site you can find answers to commonly asked questions.</p>
5:
6: <div class="section" id="coins">
app/views/welcome/help.html.erb:3:in `_app_views_welcome_help_html_erb___2078175126926644052_70094731589100'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.2ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:07:30 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (12.7ms)
Completed 500 Internal Server Error in 15ms
ActionView::Template::Error (undefined local variable or method `help' for #<#<Class:0x007f80671dde60>:0x007f80638eb0a8>):
1: <div class="pure-layout pure-layout-960">
2: <div class="l-box">
3: <%= annotated_tag('h1', t(help.title)) %>
4: <p>On this Site you can find answers to commonly asked questions.</p>
5:
6: <div class="section" id="coins">
app/views/welcome/help.html.erb:3:in `_app_views_welcome_help_html_erb___2078175126926644052_70094731589100'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (54.8ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (64.6ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:07:58 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (59.0ms)
Completed 500 Internal Server Error in 63ms
ActionView::Template::Error (undefined local variable or method `help' for #<#<Class:0x007f806711ba68>:0x007f806711a988>):
1: <div class="pure-layout pure-layout-960">
2: <div class="l-box">
3: <%= annotated_tag('h1', t(help.title)) %>
4: <p>On this Site you can find answers to commonly asked questions.</p>
5:
6: <div class="section" id="coins">
app/views/welcome/help.html.erb:3:in `_app_views_welcome_help_html_erb___2078175126926644052_70094731589100'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.5ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:07:58 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (16.7ms)
Completed 500 Internal Server Error in 23ms
ActionView::Template::Error (undefined local variable or method `help' for #<#<Class:0x007f806711ba68>:0x007f80638fa648>):
1: <div class="pure-layout pure-layout-960">
2: <div class="l-box">
3: <%= annotated_tag('h1', t(help.title)) %>
4: <p>On this Site you can find answers to commonly asked questions.</p>
5:
6: <div class="section" id="coins">
app/views/welcome/help.html.erb:3:in `_app_views_welcome_help_html_erb___2078175126926644052_70094731589100'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.5ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:08:05 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (65.7ms)
Completed 500 Internal Server Error in 67ms
ActionView::Template::Error (undefined local variable or method `help_title' for #<#<Class:0x007f806711ba68>:0x007f8067122570>):
1: <div class="pure-layout pure-layout-960">
2: <div class="l-box">
3: <%= annotated_tag('h1', t(help_title)) %>
4: <p>On this Site you can find answers to commonly asked questions.</p>
5:
6: <div class="section" id="coins">
app/views/welcome/help.html.erb:3:in `_app_views_welcome_help_html_erb___2078175126926644052_70094730888440'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.3ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:08:06 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (54.7ms)
Completed 500 Internal Server Error in 57ms
ActionView::Template::Error (undefined local variable or method `help_title' for #<#<Class:0x007f806711ba68>:0x007f80639b3058>):
1: <div class="pure-layout pure-layout-960">
2: <div class="l-box">
3: <%= annotated_tag('h1', t(help_title)) %>
4: <p>On this Site you can find answers to commonly asked questions.</p>
5:
6: <div class="section" id="coins">
app/views/welcome/help.html.erb:3:in `_app_views_welcome_help_html_erb___2078175126926644052_70094730888440'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.4ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:08:19 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (290.7ms) Rendered shared/_header.html.erb (4.0ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 306ms (Views: 305.1ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/fontawesome-webfont.woff?v=4.3.0” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:08:20 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.2ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:08:20 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:08:23 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (12.5ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.6ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (15.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094730320840 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (15.1ms) Rendered welcome/index.html.erb within layouts/application (48.6ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 62ms (Views: 56.2ms | ActiveRecord: 2.5ms)
Started GET “/games” for 127.0.0.1 at 2015-06-25 20:08:24 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (21.0ms) Rendered games/index.html.erb within layouts/application (25.9ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 39ms (Views: 35.9ms | ActiveRecord: 2.2ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 20:08:24 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.5ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (4.0ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (3.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094730320840 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (12.5ms) Rendered welcome/index.html.erb within layouts/application (26.2ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 38ms (Views: 35.3ms | ActiveRecord: 1.9ms)
Started GET “/games” for 127.0.0.1 at 2015-06-25 20:08:24 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[36mGame Load (0.4ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (21.4ms) Rendered games/index.html.erb within layouts/application (25.5ms) Rendered shared/_header.html.erb (3.3ms) Rendered shared/_footer.html.erb (1.4ms)
Completed 200 OK in 110ms (Views: 106.0ms | ActiveRecord: 2.4ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 20:08:25 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.4ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.4ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094730320840 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (13.9ms) Rendered welcome/index.html.erb within layouts/application (24.1ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_splash.html.erb (0.4ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 35ms (Views: 32.6ms | ActiveRecord: 1.7ms)
Started GET “/games” for 127.0.0.1 at 2015-06-25 20:08:25 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (11.9ms) Rendered games/index.html.erb within layouts/application (14.4ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 25ms (Views: 22.8ms | ActiveRecord: 1.1ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-06-25 20:08:28 +0200 Processing by GameRequestsController#new as HTML Completed 401 Unauthorized in 1ms
Started GET “/users/sign_in” for 127.0.0.1 at 2015-06-25 20:08:28 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (0.6ms) Rendered devise/sessions/new.html.erb within layouts/application (5.2ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 19ms (Views: 16.1ms | ActiveRecord: 0.0ms)
Started GET “/users/sign_up” for 127.0.0.1 at 2015-06-25 20:08:30 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.5ms) Rendered devise/registrations/new.html.erb within layouts/application (4.6ms) Rendered shared/_header.html.erb (2.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 28ms (Views: 24.1ms | ActiveRecord: 0.0ms)
Started GET “/users/sign_up” for 127.0.0.1 at 2015-06-25 20:09:13 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.3ms) Rendered devise/registrations/new.html.erb within layouts/application (325.7ms) Rendered shared/_header.html.erb (1.6ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 341ms (Views: 338.3ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/users/sign_up” for 127.0.0.1 at 2015-06-25 20:09:14 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.2ms) Rendered devise/registrations/new.html.erb within layouts/application (2.5ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 13ms (Views: 12.1ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:14 +0200
Started GET “/users/sign_up” for 127.0.0.1 at 2015-06-25 20:09:15 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.3ms) Rendered devise/registrations/new.html.erb within layouts/application (2.9ms) Rendered shared/_header.html.erb (3.5ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 66ms (Views: 64.8ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:15 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:15 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:15 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:15 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:15 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:15 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:15 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:15 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:15 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:15 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:15 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:15 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:15 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:15 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:15 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:15 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:15 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:15 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:15 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:15 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:15 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:15 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:15 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:15 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:15 +0200
Started GET “/users/sign_up” for 127.0.0.1 at 2015-06-25 20:09:25 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.6ms) Rendered devise/registrations/new.html.erb within layouts/application (326.9ms) Rendered shared/_header.html.erb (1.8ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 344ms (Views: 342.6ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:26 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:26 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:26 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:26 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:26 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:26 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:26 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:26 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:26 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:26 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:26 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:26 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:26 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:26 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:26 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:26 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:26 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:26 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:26 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:26 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:26 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:26 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:26 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:26 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:26 +0200
Started GET “/users/sign_up” for 127.0.0.1 at 2015-06-25 20:09:37 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.4ms) Rendered devise/registrations/new.html.erb within layouts/application (309.9ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 322ms (Views: 320.0ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/users/sign_up” for 127.0.0.1 at 2015-06-25 20:09:38 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.3ms) Rendered devise/registrations/new.html.erb within layouts/application (3.6ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 21ms (Views: 19.3ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:09:38 +0200
Started GET “/users/sign_up” for 127.0.0.1 at 2015-06-25 20:10:08 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.4ms) Rendered devise/registrations/new.html.erb within layouts/application (310.0ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 322ms (Views: 319.9ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:09 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:09 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:09 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:09 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:09 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:09 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:09 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:09 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:09 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:09 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:09 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:09 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:09 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:09 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:09 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:09 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:09 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:09 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:09 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:09 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:09 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:09 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:09 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:09 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:09 +0200
Started GET “/users/sign_up” for 127.0.0.1 at 2015-06-25 20:10:19 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.2ms) Rendered devise/registrations/new.html.erb within layouts/application (4.5ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.0ms)
Started GET “/users/sign_up” for 127.0.0.1 at 2015-06-25 20:10:31 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.3ms) Rendered devise/registrations/new.html.erb within layouts/application (3.4ms) Rendered shared/_header.html.erb (1.7ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 18ms (Views: 16.0ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:31 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:31 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:31 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:31 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:31 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:31 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:31 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:31 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:32 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:32 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:32 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:32 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:32 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:32 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:32 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:32 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:32 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:32 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:32 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:32 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:32 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:32 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:32 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:32 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:32 +0200
Started GET “/users/sign_up” for 127.0.0.1 at 2015-06-25 20:10:37 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.5ms) Rendered devise/registrations/new.html.erb within layouts/application (5.3ms) Rendered shared/_header.html.erb (1.7ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:38 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:38 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:38 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:38 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:38 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:38 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:38 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:38 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:38 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:38 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:38 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:38 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:38 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:38 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:38 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:38 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:38 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:38 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:38 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:38 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:38 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:38 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:38 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:38 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:38 +0200
Started GET “/users/sign_up” for 127.0.0.1 at 2015-06-25 20:10:40 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.2ms) Rendered devise/registrations/new.html.erb within layouts/application (3.0ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 18ms (Views: 15.5ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:40 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:40 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:40 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:40 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:40 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:40 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:40 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:40 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:40 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:40 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:40 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:40 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:40 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:40 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:10:40 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:40 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:40 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:40 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:40 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:40 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:40 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:40 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:40 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:40 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:10:40 +0200
Started GET “/users/sign_up” for 127.0.0.1 at 2015-06-25 20:11:47 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.4ms) Rendered devise/registrations/new.html.erb within layouts/application (313.3ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 325ms (Views: 323.4ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:47 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:47 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:47 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:47 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:47 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:47 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:47 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:47 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:47 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:47 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:47 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:47 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:47 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:47 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:47 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:11:47 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:11:47 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:11:47 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:11:47 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:11:47 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:11:47 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:11:47 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:11:47 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:11:47 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:11:47 +0200
Started GET “/users/sign_up” for 127.0.0.1 at 2015-06-25 20:11:49 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.5ms) Rendered devise/registrations/new.html.erb within layouts/application (4.1ms) Rendered shared/_header.html.erb (3.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 35ms (Views: 31.6ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:49 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:49 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:49 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:49 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:49 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:49 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:49 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:49 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:49 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:49 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:49 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:49 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:49 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:49 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:11:49 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:11:49 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:11:49 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:11:49 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:11:49 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:11:49 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:11:49 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:11:49 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:11:49 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:11:49 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:11:49 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:11:55 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (14.1ms)
Completed 500 Internal Server Error in 17ms
ActionView::Template::Error (undefined local variable or method `help' for #<#<Class:0x007f806436ca40>:0x007f8064377a58>):
9: On <%= t('brand') %> you can use <b>Coins</b> to get a better discovery for you Game Codes.
10: <b>Coins</b> enable you to advertise your Codes on the <%= link_to 'Front Page', root_path %>.
11: </p>
12: <%= t(help.title) %>
13: <%= annotated_tag('h2','How can I get more Coins?') %>
14: </h2>
15: </div>
app/views/welcome/help.html.erb:12:in `_app_views_welcome_help_html_erb___2078175126926644052_70094706946580'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (47.4ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (55.8ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:12:02 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.7ms) Rendered shared/_header.html.erb (2.7ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 13ms (Views: 12.8ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:02 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:02 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:02 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:02 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:02 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:02 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:02 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:02 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:02 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:02 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:02 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:02 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:02 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:02 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:02 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:12:02 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:12:02 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:12:02 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:12:02 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:12:02 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:12:02 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:12:02 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:12:02 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:12:02 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:12:02 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:12:20 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.7ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:20 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:20 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:20 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:20 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:20 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:20 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:20 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:20 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:20 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:20 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:20 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:20 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:20 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:20 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:12:20 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:12:20 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:12:20 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:12:20 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:12:20 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:12:20 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:12:20 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:12:20 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:12:20 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:12:20 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:12:20 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:13:22 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (359.7ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 373ms (Views: 370.1ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:23 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:23 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:23 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:23 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:23 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:23 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:23 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:23 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:23 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:23 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:23 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:23 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:23 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:23 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:23 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:23 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:23 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:23 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:23 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:23 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:23 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:23 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:23 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:23 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:23 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:13:45 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.2ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:45 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:45 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:45 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:45 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:45 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:45 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:45 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:45 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:45 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:45 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:45 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:45 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:45 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:45 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:45 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:45 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:45 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:45 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:45 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:45 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:45 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:45 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:45 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:45 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:45 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:13:51 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (1.2ms)
Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:51 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:52 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:52 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:52 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:52 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:52 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:52 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:52 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:52 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:52 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:52 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:52 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:52 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:52 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:13:52 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:52 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:52 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:52 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:52 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:52 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:52 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:52 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:52 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:52 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:13:52 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:13:59 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.4ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (1.3ms)
Completed 200 OK in 12ms (Views: 11.8ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:00 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:00 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:00 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:00 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:00 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:00 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:00 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:00 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:00 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:00 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:00 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:00 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:00 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:00 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:00 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:00 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:00 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:00 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:00 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:00 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:00 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:00 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:00 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:00 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:00 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:14:04 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.6ms) Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:04 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:04 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:04 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:04 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:04 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:04 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:04 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:04 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:04 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:04 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:04 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:04 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:04 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:04 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:04 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:04 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:04 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:04 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:04 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:04 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:04 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:04 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:04 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:04 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:04 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:14:12 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:12 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:12 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:12 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:12 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:12 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:12 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:12 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:12 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:12 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:12 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:12 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:12 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:12 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:12 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:14:12 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:12 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:12 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:12 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:12 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:12 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:12 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:12 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:12 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:12 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:14:12 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:15:01 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 196ms (Views: 195.2ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:01 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:01 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:01 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:01 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:01 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:01 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:01 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:01 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:01 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:01 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:01 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:01 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:01 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:01 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:01 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:01 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:01 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:02 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:02 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:02 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:02 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:02 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:02 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:02 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:02 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:15:08 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 111ms (Views: 110.3ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:08 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:08 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:08 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:08 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:08 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:08 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:08 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:08 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:08 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:08 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:08 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:08 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:08 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:08 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:08 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:08 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:08 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:08 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:08 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:08 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:08 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:08 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:08 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:08 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:08 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:15:22 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.9ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 66ms (Views: 65.6ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:22 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:22 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:23 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:23 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:23 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:23 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:23 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:23 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:23 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:23 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:23 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:23 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:23 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:23 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:15:23 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:23 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:23 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:23 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:23 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:23 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:23 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:23 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:23 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:23 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:15:23 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:16:16 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (3.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 72ms (Views: 71.7ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:16 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:16 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:16 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:16 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:16 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:16 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:16 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:16 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:16 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:16 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:16 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:16 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:16 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:16 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:16 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:16 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:16 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:16 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:16 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:16 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:16 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:16 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:16 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:16 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:16 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:16:18 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.4ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 58ms (Views: 57.5ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:18 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:18 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:18 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:18 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:18 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:18 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:18 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:18 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:18 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:18 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:18 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:18 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:18 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:18 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:18 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:18 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:18 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:18 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:18 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:18 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:18 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:18 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:18 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:18 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:19 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:16:26 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.4ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 119ms (Views: 118.1ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:26 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:26 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:26 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:26 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:26 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:26 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:26 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:26 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:26 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:26 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:26 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:26 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:26 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:26 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:26 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:26 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:26 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:26 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:26 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:26 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:26 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:26 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:26 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:26 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:26 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:16:31 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 109ms (Views: 108.6ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:31 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:31 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:31 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:31 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:31 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:31 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:31 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:31 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:31 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:31 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:31 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:31 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:31 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:31 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:16:31 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:31 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:31 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:31 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:31 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:31 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:31 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:31 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:31 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:31 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:16:31 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:17:03 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:03 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:03 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:03 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:03 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:03 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:03 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:03 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:03 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:03 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:03 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:03 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:03 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:03 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:03 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:03 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:03 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:03 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:03 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:03 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:03 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:03 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:03 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:03 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:03 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:03 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:17:04 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.4ms) Rendered shared/_header.html.erb (1.8ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 14ms (Views: 12.4ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:04 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:04 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:04 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:04 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:04 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:04 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:04 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:04 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:04 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:04 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:04 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:04 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:04 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:04 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:04 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:04 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:04 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:04 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:04 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:04 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:04 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:04 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:04 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:04 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:04 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:17:07 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.8ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.0ms)
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:17:31 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:31 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:31 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:31 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:31 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:31 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:31 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:31 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:31 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:31 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:31 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:31 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:31 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:31 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:31 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:31 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:31 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:31 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:31 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:31 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:31 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:31 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:31 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:31 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:31 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:31 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:17:32 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.4ms) Rendered shared/_header.html.erb (2.4ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:32 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:32 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:32 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:32 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:32 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:32 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:32 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:32 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:32 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:32 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:32 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:32 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:32 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:32 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:32 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:32 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:32 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:32 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:32 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:33 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:33 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:33 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:33 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:33 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:33 +0200
Started GET “/help” for 127.0.0.1 at 2015-06-25 20:17:38 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.4ms) Rendered shared/_header.html.erb (2.0ms) Rendered shared/_footer.html.erb (4.1ms)
Completed 200 OK in 73ms (Views: 72.4ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:38 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:38 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:38 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:38 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:38 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:38 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:38 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:38 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:38 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:38 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:38 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:38 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:38 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:38 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:38 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:38 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:38 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:38 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:38 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:38 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:38 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:38 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:38 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:38 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:38 +0200
Started GET “/games” for 127.0.0.1 at 2015-06-25 20:17:46 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[36mGame Load (0.6ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (45.6ms) Rendered games/index.html.erb within layouts/application (51.7ms) Rendered shared/_header.html.erb (1.9ms) Rendered shared/_footer.html.erb (2.6ms)
Completed 200 OK in 86ms (Views: 67.7ms | ActiveRecord: 4.8ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 20:17:47 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.4ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (5.6ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.2ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (15.9ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094730320840 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.7ms) Rendered welcome/index.html.erb within layouts/application (45.3ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_splash.html.erb (0.3ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 59ms (Views: 55.8ms | ActiveRecord: 2.6ms)
Started GET “/users” for 127.0.0.1 at 2015-06-25 20:17:48 +0200 Processing by UsersController#index as HTML Completed 401 Unauthorized in 4ms
Started GET “/users/sign_in” for 127.0.0.1 at 2015-06-25 20:17:48 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (0.7ms) Rendered devise/sessions/new.html.erb within layouts/application (4.0ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.0ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 20:17:49 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.4ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (5.2ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.2ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.7ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094730320840 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (29.2ms) Rendered welcome/index.html.erb within layouts/application (43.6ms) Rendered shared/_header.html.erb (4.4ms) Rendered shared/_splash.html.erb (0.3ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 62ms (Views: 57.6ms | ActiveRecord: 3.2ms)
Started GET “/users/sign_in” for 127.0.0.1 at 2015-06-25 20:17:50 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (0.3ms) Rendered devise/sessions/new.html.erb within layouts/application (2.4ms) Rendered shared/_header.html.erb (3.8ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 20ms (Views: 18.5ms | ActiveRecord: 0.0ms)
Started POST “/users/sign_in” for 127.0.0.1 at 2015-06-25 20:17:51 +0200 Processing by Devise::SessionsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"QDEfLL5PgP0zWDvDShfHtrvHbhHCBYeVICncvpoluYw=", "user"=>{"email"=>"peter@son.de", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'peter@son.de' ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mSQL (1.7ms)[0m [1mUPDATE "users" SET "remember_created_at" = ?, "updated_at" = ? WHERE "users"."id" = 52[0m [["remember_created_at", Thu, 25 Jun 2015 18:17:51 UTC +00:00], ["updated_at", Thu, 25 Jun 2015 18:17:51 UTC +00:00]]
[1m[35m (0.6ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mSQL (2.3ms)[0m UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 52 [["last_sign_in_at", Wed, 24 Jun 2015 21:32:33 UTC +00:00], ["current_sign_in_at", Thu, 25 Jun 2015 18:17:51 UTC +00:00], ["sign_in_count", 4], ["updated_at", Thu, 25 Jun 2015 18:17:51 UTC +00:00]]
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
Redirected to localhost:3000/users Completed 302 Found in 94ms (ActiveRecord: 6.0ms)
Started GET “/users” for 127.0.0.1 at 2015-06-25 20:17:51 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (7.6ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 19ms (Views: 16.4ms | ActiveRecord: 0.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:52 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:52 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:52 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:52 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:52 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:52 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:52 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:52 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:52 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:52 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:52 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:52 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:52 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:52 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:17:52 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:52 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:52 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:52 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:52 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:52 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:52 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:52 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:52 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:52 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:17:52 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:17:55 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.6ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (6.8ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (5.6ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (5.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094730320840 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (46.3ms) Rendered welcome/index.html.erb within layouts/application (145.9ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.9ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 165ms (Views: 159.2ms | ActiveRecord: 4.7ms)
Started GET “/coins” for 127.0.0.1 at 2015-06-25 20:17:55 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.6ms) Rendered shared/_header.html.erb (1.6ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 13ms (Views: 10.7ms | ActiveRecord: 0.3ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 20:17:58 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.8ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.4ms) [1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (8.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094730320840 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (21.8ms) Rendered welcome/index.html.erb within layouts/application (39.4ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.3ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 54ms (Views: 48.7ms | ActiveRecord: 3.0ms)
Started GET “/games” for 127.0.0.1 at 2015-06-25 20:18:00 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (23.3ms) Rendered games/index.html.erb within layouts/application (27.2ms) Rendered shared/_header.html.erb (1.8ms) Rendered shared/_footer.html.erb (3.0ms)
Completed 200 OK in 45ms (Views: 40.9ms | ActiveRecord: 2.6ms)
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-06-25 20:18:02 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 2]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35mGameCode Load (0.2ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 2]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 20]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 43]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 40]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 24]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 42]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 17]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]]
Rendered games/show.html.erb within layouts/application (16.2ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 34ms (Views: 24.5ms | ActiveRecord: 1.9ms)
Started GET “/games” for 127.0.0.1 at 2015-06-25 20:18:32 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (12.1ms) Rendered games/index.html.erb within layouts/application (14.6ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (1.3ms)
Completed 200 OK in 25ms (Views: 23.2ms | ActiveRecord: 1.2ms)
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-06-25 20:18:33 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.3ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 2]]
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35mGameCode Load (0.2ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 2]]
[1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 20]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 43]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 40]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 24]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 42]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 17]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]]
Rendered games/show.html.erb within layouts/application (79.1ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 92ms (Views: 86.3ms | ActiveRecord: 3.4ms)
Started GET “/users” for 127.0.0.1 at 2015-06-25 20:18:35 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (6.3ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 18ms (Views: 15.5ms | ActiveRecord: 0.6ms)
Started GET “/users/2” for 127.0.0.1 at 2015-06-25 20:18:36 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"2"}
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "2"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]]
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 5]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (5.5ms)
Rendered shared/_header.html.erb (0.9ms)
Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 17ms (Views: 14.1ms | ActiveRecord: 0.9ms)
Started GET “/games/presence-of-evil” for 127.0.0.1 at 2015-06-25 20:18:37 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"presence-of-evil"}
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'presence-of-evil' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.3ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 5]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 5]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 28]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 35]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 46]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 50]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 44]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 26]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 12]]
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 14]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 23]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 27]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 15]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 30]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 23]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 41]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 27]]
Rendered games/show.html.erb within layouts/application (33.6ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 51ms (Views: 44.7ms | ActiveRecord: 3.5ms)
Started GET “/game_codes” for 127.0.0.1 at 2015-06-25 20:18:44 +0200 Processing by GameCodesController#index as HTML
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Completed 500 Internal Server Error in 7ms
ActionView::MissingTemplate (Missing template game_codes/index, application/index with {:locale=>, :formats=>, :handlers=>[:erb, :builder, :raw, :ruby, :jbuilder]}. Searched in:
* "/Users/rbarisic/rails_projects/game_codes/app/views" * "/Library/Ruby/Gems/2.0.0/gems/devise-3.4.1/app/views"
):
actionpack (4.0.8) lib/action_view/path_set.rb:46:in `find' actionpack (4.0.8) lib/action_view/lookup_context.rb:122:in `find' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:35:in `determine_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:8:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:423:in `_run__3570852082134915399__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__3730132118717047523__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.5ms)
Started GET “/game_codes/1” for 127.0.0.1 at 2015-06-25 20:18:46 +0200 Processing by GameCodesController#show as HTML
Parameters: {"id"=>"1"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
Completed 500 Internal Server Error in 4ms
ActionView::MissingTemplate (Missing template game_codes/show, application/show with {:locale=>, :formats=>, :handlers=>[:erb, :builder, :raw, :ruby, :jbuilder]}. Searched in:
* "/Users/rbarisic/rails_projects/game_codes/app/views" * "/Library/Ruby/Gems/2.0.0/gems/devise-3.4.1/app/views"
):
actionpack (4.0.8) lib/action_view/path_set.rb:46:in `find' actionpack (4.0.8) lib/action_view/lookup_context.rb:122:in `find' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:35:in `determine_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:8:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:423:in `_run__3570852082134915399__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__3730132118717047523__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.5ms)
Started GET “/game_codes/2” for 127.0.0.1 at 2015-06-25 20:18:48 +0200 Processing by GameCodesController#show as HTML
Parameters: {"id"=>"2"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Completed 500 Internal Server Error in 3ms
ActionView::MissingTemplate (Missing template game_codes/show, application/show with {:locale=>, :formats=>, :handlers=>[:erb, :builder, :raw, :ruby, :jbuilder]}. Searched in:
* "/Users/rbarisic/rails_projects/game_codes/app/views" * "/Library/Ruby/Gems/2.0.0/gems/devise-3.4.1/app/views"
):
actionpack (4.0.8) lib/action_view/path_set.rb:46:in `find' actionpack (4.0.8) lib/action_view/lookup_context.rb:122:in `find' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:35:in `determine_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:8:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:423:in `_run__3570852082134915399__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__3730132118717047523__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.4ms)
Started GET “/game_codes/new” for 127.0.0.1 at 2015-06-25 20:18:53 +0200 Processing by GameCodesController#new as HTML
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
Completed 500 Internal Server Error in 3ms
NoMethodError (undefined method `[]' for nil:NilClass):
app/controllers/game_codes_controller.rb:5:in `new' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.5ms)
Started GET “/game_codes/new?%22awd%22” for 127.0.0.1 at 2015-06-25 20:19:01 +0200 Processing by GameCodesController#new as HTML
Parameters: {"\"awd\""=>nil}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Completed 500 Internal Server Error in 2ms
NoMethodError (undefined method `[]' for nil:NilClass):
app/controllers/game_codes_controller.rb:5:in `new' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.0ms)
Started GET “/users/2” for 127.0.0.1 at 2015-06-25 20:19:08 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"2"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "2"]]
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 2]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]]
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 5]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (10.3ms)
Rendered shared/_header.html.erb (1.9ms)
Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 28ms (Views: 24.4ms | ActiveRecord: 1.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:08 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:08 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:08 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:08 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:08 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:08 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:08 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:08 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:08 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:08 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:08 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:08 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:08 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:08 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:08 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:19:08 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:19:08 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:19:08 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:19:08 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:19:08 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:19:08 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:19:08 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:19:08 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:19:08 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:19:08 +0200
Started GET “/users” for 127.0.0.1 at 2015-06-25 20:19:11 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (5.4ms) Rendered shared/_header.html.erb (2.9ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 23ms (Views: 21.1ms | ActiveRecord: 0.6ms)
Started GET “/game_codes” for 127.0.0.1 at 2015-06-25 20:19:22 +0200 Processing by GameCodesController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Completed 500 Internal Server Error in 3ms
ActionView::MissingTemplate (Missing template game_codes/index, application/index with {:locale=>, :formats=>, :handlers=>[:erb, :builder, :raw, :ruby, :jbuilder]}. Searched in:
* "/Users/rbarisic/rails_projects/game_codes/app/views" * "/Library/Ruby/Gems/2.0.0/gems/devise-3.4.1/app/views"
):
actionpack (4.0.8) lib/action_view/path_set.rb:46:in `find' actionpack (4.0.8) lib/action_view/lookup_context.rb:122:in `find' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:35:in `determine_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:8:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:423:in `_run__3570852082134915399__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__3730132118717047523__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.7ms)
Started GET “/game_codes/new” for 127.0.0.1 at 2015-06-25 20:19:26 +0200 Processing by GameCodesController#new as HTML
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
Completed 500 Internal Server Error in 2ms
NoMethodError (undefined method `[]' for nil:NilClass):
app/controllers/game_codes_controller.rb:5:in `new' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.6ms)
Started GET “/games” for 127.0.0.1 at 2015-06-25 20:19:41 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.5ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (17.0ms) Rendered games/index.html.erb within layouts/application (21.8ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 36ms (Views: 33.2ms | ActiveRecord: 1.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:41 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:41 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:41 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:41 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:41 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:41 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:41 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:41 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:41 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:41 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:41 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:41 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:41 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:41 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:19:41 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:19:41 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:19:41 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:19:41 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:19:41 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:19:41 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:19:41 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:19:41 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:19:41 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:19:41 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:19:41 +0200
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-06-25 20:19:43 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[36mGame Load (0.4ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 1]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 1]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 26]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 31]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 38]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 46]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 14]]
Rendered games/show.html.erb within layouts/application (16.4ms)
Rendered shared/_header.html.erb (1.8ms)
Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 38ms (Views: 32.6ms | ActiveRecord: 1.9ms)
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-06-25 20:20:11 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1[0m
Rendered games/show.html.erb within layouts/application (0.7ms)
Completed 500 Internal Server Error in 5ms
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:66: syntax error, unexpected keyword_ensure, expecting end-of-input):
actionpack (4.0.8) lib/action_view/template.rb:299:in `module_eval' actionpack (4.0.8) lib/action_view/template.rb:299:in `compile' actionpack (4.0.8) lib/action_view/template.rb:248:in `block in compile!' actionpack (4.0.8) lib/action_view/template.rb:236:in `synchronize' actionpack (4.0.8) lib/action_view/template.rb:236:in `compile!' actionpack (4.0.8) lib/action_view/template.rb:142:in `block in render' activesupport (4.0.8) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.8) lib/action_view/template.rb:141:in `render' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:433:in `_run__1611850332266140815__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__3730132118717047523__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.9ms)
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-06-25 20:20:17 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered games/show.html.erb within layouts/application (2.6ms)
Completed 500 Internal Server Error in 7ms
ActionView::Template::Error (undefined method `code_multiplier' for #<Game:0x007f80670950a8>):
4: <div class="content">
5: <% if user_signed_in? %>
6: Add a new game code.
7: <% if @game.code_multiplier > 1 %>
8: heron
9: <% end %>
10: <%= form_for @game_code, html: { class: 'pure-form'} do |f| %>
app/views/games/show.html.erb:7:in `_app_views_games_show_html_erb___3991621450370583244_70094730980280'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.2ms)
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-06-25 20:20:22 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 1]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 26]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 31]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 38]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 46]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 14]]
Rendered games/show.html.erb within layouts/application (10.8ms)
Rendered shared/_header.html.erb (1.4ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 25ms (Views: 21.5ms | ActiveRecord: 1.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:22 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:22 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:22 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:22 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:22 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:22 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:22 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:22 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:22 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:22 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:22 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:22 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:22 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:22 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:22 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:20:22 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:20:22 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:20:22 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:20:22 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:20:22 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:20:22 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:20:22 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:20:22 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:20:22 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:20:22 +0200
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-06-25 20:20:30 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 1]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 26]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 31]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 38]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 46]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 14]]
Rendered games/show.html.erb within layouts/application (8.5ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 21ms (Views: 17.8ms | ActiveRecord: 1.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:31 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:31 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:31 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:31 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:31 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:31 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:31 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:31 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:31 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:31 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:31 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:31 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:31 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:31 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:20:31 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:20:31 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:20:31 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:20:31 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:20:31 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:20:31 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:20:31 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:20:31 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:20:31 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:20:31 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:20:31 +0200
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-06-25 20:21:07 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 1]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 26]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 31]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 38]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 46]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 14]]
Rendered games/show.html.erb within layouts/application (10.0ms)
Rendered shared/_header.html.erb (2.8ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 26ms (Views: 22.8ms | ActiveRecord: 1.1ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:08 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:08 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:08 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:08 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:08 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:08 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:08 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:08 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:08 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:08 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:08 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:08 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:08 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:08 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:08 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:21:08 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:21:08 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:21:08 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:21:08 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:21:08 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:21:08 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:21:08 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:21:08 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:21:08 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:21:08 +0200
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-06-25 20:21:22 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered games/show.html.erb within layouts/application (2.4ms)
Completed 500 Internal Server Error in 6ms
ActionView::Template::Error (wrong number of arguments (1 for 2..3)):
6: Add a new game code.
7: <% if @game.coin_multiplier > 0 %>
8: <p>
9: You will get <%= pluralize(@game.coin_multiplier) %> Coins for adding a Code.
10: </p>
11: <% end %>
12: <%= form_for @game_code, html: { class: 'pure-form'} do |f| %>
app/views/games/show.html.erb:9:in `_app_views_games_show_html_erb___3991621450370583244_70094702492580'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.3ms)
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-06-25 20:21:26 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 1]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 26]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 31]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 38]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 46]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 14]]
Rendered games/show.html.erb within layouts/application (12.0ms)
Rendered shared/_header.html.erb (0.9ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 25ms (Views: 21.4ms | ActiveRecord: 1.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:27 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:27 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:27 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:27 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:27 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:27 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:27 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:27 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:27 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:27 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:27 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:27 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:27 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:27 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:21:27 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:21:27 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:21:27 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:21:27 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:21:27 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:21:27 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:21:27 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:21:27 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:21:27 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:21:27 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:21:27 +0200
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-06-25 20:21:55 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1
Rendered games/show.html.erb within layouts/application (0.8ms)
Completed 500 Internal Server Error in 29ms
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:11: syntax error, unexpected keyword_end, expecting ')' '; end
^
/Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:17: syntax error, unexpected keyword_end, expecting ')'
end ^
/Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:68: syntax error, unexpected keyword_ensure, expecting ')' /Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:70: syntax error, unexpected keyword_end, expecting ')'):
actionpack (4.0.8) lib/action_view/template.rb:299:in `module_eval' actionpack (4.0.8) lib/action_view/template.rb:299:in `compile' actionpack (4.0.8) lib/action_view/template.rb:248:in `block in compile!' actionpack (4.0.8) lib/action_view/template.rb:236:in `synchronize' actionpack (4.0.8) lib/action_view/template.rb:236:in `compile!' actionpack (4.0.8) lib/action_view/template.rb:142:in `block in render' activesupport (4.0.8) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.8) lib/action_view/template.rb:141:in `render' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:433:in `_run__1611850332266140815__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__3730132118717047523__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.2ms)
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-06-25 20:22:01 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1[0m
Rendered games/show.html.erb within layouts/application (0.7ms)
Completed 500 Internal Server Error in 5ms
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:11: syntax error, unexpected keyword_end, expecting ')' '; end
^
/Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:17: syntax error, unexpected keyword_end, expecting ')'
end ^
/Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:68: syntax error, unexpected keyword_ensure, expecting ')' /Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:70: syntax error, unexpected keyword_end, expecting ')'):
actionpack (4.0.8) lib/action_view/template.rb:299:in `module_eval' actionpack (4.0.8) lib/action_view/template.rb:299:in `compile' actionpack (4.0.8) lib/action_view/template.rb:248:in `block in compile!' actionpack (4.0.8) lib/action_view/template.rb:236:in `synchronize' actionpack (4.0.8) lib/action_view/template.rb:236:in `compile!' actionpack (4.0.8) lib/action_view/template.rb:142:in `block in render' activesupport (4.0.8) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.8) lib/action_view/template.rb:141:in `render' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:433:in `_run__1611850332266140815__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__3730132118717047523__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.5ms)
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-06-25 20:22:01 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[35mGame Load (1.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1
Rendered games/show.html.erb within layouts/application (1.9ms)
Completed 500 Internal Server Error in 14ms
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:11: syntax error, unexpected keyword_end, expecting ')' '; end
^
/Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:17: syntax error, unexpected keyword_end, expecting ')'
end ^
/Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:68: syntax error, unexpected keyword_ensure, expecting ')' /Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:70: syntax error, unexpected keyword_end, expecting ')'):
actionpack (4.0.8) lib/action_view/template.rb:299:in `module_eval' actionpack (4.0.8) lib/action_view/template.rb:299:in `compile' actionpack (4.0.8) lib/action_view/template.rb:248:in `block in compile!' actionpack (4.0.8) lib/action_view/template.rb:236:in `synchronize' actionpack (4.0.8) lib/action_view/template.rb:236:in `compile!' actionpack (4.0.8) lib/action_view/template.rb:142:in `block in render' activesupport (4.0.8) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.8) lib/action_view/template.rb:141:in `render' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:433:in `_run__1611850332266140815__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__3730132118717047523__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.4ms)
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-06-25 20:22:08 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1[0m
Rendered games/show.html.erb within layouts/application (1.2ms)
Completed 500 Internal Server Error in 10ms
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:11: syntax error, unexpected keyword_end, expecting ')' '; end
^
/Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:17: syntax error, unexpected keyword_end, expecting ')'
end ^
/Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:68: syntax error, unexpected keyword_ensure, expecting ')' /Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:70: syntax error, unexpected keyword_end, expecting ')'):
actionpack (4.0.8) lib/action_view/template.rb:299:in `module_eval' actionpack (4.0.8) lib/action_view/template.rb:299:in `compile' actionpack (4.0.8) lib/action_view/template.rb:248:in `block in compile!' actionpack (4.0.8) lib/action_view/template.rb:236:in `synchronize' actionpack (4.0.8) lib/action_view/template.rb:236:in `compile!' actionpack (4.0.8) lib/action_view/template.rb:142:in `block in render' activesupport (4.0.8) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.8) lib/action_view/template.rb:141:in `render' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:433:in `_run__1611850332266140815__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__3730132118717047523__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.2ms)
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-06-25 20:22:08 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1
Rendered games/show.html.erb within layouts/application (0.7ms)
Completed 500 Internal Server Error in 5ms
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:11: syntax error, unexpected keyword_end, expecting ')' '; end
^
/Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:17: syntax error, unexpected keyword_end, expecting ')'
end ^
/Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:68: syntax error, unexpected keyword_ensure, expecting ')' /Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:70: syntax error, unexpected keyword_end, expecting ')'):
actionpack (4.0.8) lib/action_view/template.rb:299:in `module_eval' actionpack (4.0.8) lib/action_view/template.rb:299:in `compile' actionpack (4.0.8) lib/action_view/template.rb:248:in `block in compile!' actionpack (4.0.8) lib/action_view/template.rb:236:in `synchronize' actionpack (4.0.8) lib/action_view/template.rb:236:in `compile!' actionpack (4.0.8) lib/action_view/template.rb:142:in `block in render' activesupport (4.0.8) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.8) lib/action_view/template.rb:141:in `render' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:433:in `_run__1611850332266140815__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__3730132118717047523__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.4ms)
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-06-25 20:22:09 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1[0m
Rendered games/show.html.erb within layouts/application (0.7ms)
Completed 500 Internal Server Error in 5ms
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:11: syntax error, unexpected keyword_end, expecting ')' '; end
^
/Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:17: syntax error, unexpected keyword_end, expecting ')'
end ^
/Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:68: syntax error, unexpected keyword_ensure, expecting ')' /Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:70: syntax error, unexpected keyword_end, expecting ')'):
actionpack (4.0.8) lib/action_view/template.rb:299:in `module_eval' actionpack (4.0.8) lib/action_view/template.rb:299:in `compile' actionpack (4.0.8) lib/action_view/template.rb:248:in `block in compile!' actionpack (4.0.8) lib/action_view/template.rb:236:in `synchronize' actionpack (4.0.8) lib/action_view/template.rb:236:in `compile!' actionpack (4.0.8) lib/action_view/template.rb:142:in `block in render' activesupport (4.0.8) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.8) lib/action_view/template.rb:141:in `render' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:433:in `_run__1611850332266140815__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__3730132118717047523__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.9ms)
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-06-25 20:22:18 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.3ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 1]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35mGameCode Load (0.6ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 1]]
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 26]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 31]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 38]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 46]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 14]]
Rendered games/show.html.erb within layouts/application (24.7ms)
Rendered shared/_header.html.erb (1.3ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 38ms (Views: 32.7ms | ActiveRecord: 2.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:18 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:18 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:18 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:18 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:18 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:18 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:18 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:18 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:18 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:18 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:18 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:18 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:19 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:19 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:19 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:19 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:19 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:19 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:19 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:19 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:19 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:19 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:19 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:19 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:19 +0200
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-06-25 20:22:25 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.3ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 1]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 26]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 31]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 38]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 46]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 14]]
Rendered games/show.html.erb within layouts/application (328.5ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 341ms (Views: 336.5ms | ActiveRecord: 1.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:25 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:25 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:25 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:25 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:25 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:25 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:25 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:25 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:25 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:25 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:25 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:25 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:25 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:25 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:25 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:25 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:25 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:25 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:25 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:25 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:25 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:25 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:25 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:25 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:25 +0200
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-06-25 20:22:27 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 1]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 26]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 31]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 38]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 46]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 14]]
Rendered games/show.html.erb within layouts/application (10.8ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 27ms (Views: 23.4ms | ActiveRecord: 1.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:27 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:27 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:27 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:27 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:27 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:27 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:27 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:27 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:27 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:27 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:27 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:27 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:27 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:27 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:27 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:27 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:27 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:27 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:27 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:27 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:27 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:27 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:27 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:27 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:27 +0200
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-06-25 20:22:32 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 1]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35mGameCode Load (0.2ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 1]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 26]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 31]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 38]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 46]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 14]]
Rendered games/show.html.erb within layouts/application (342.3ms)
Rendered shared/_header.html.erb (0.9ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 373ms (Views: 350.1ms | ActiveRecord: 2.1ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:32 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:32 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:32 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:32 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:32 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:32 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:32 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:32 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:32 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:32 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:32 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:32 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:32 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:32 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:32 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:32 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:32 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:32 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:32 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:32 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:32 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:32 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:32 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:32 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:32 +0200
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-06-25 20:22:36 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.3ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 1]]
[1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35mGameCode Load (0.2ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 1]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 26]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 31]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 38]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 46]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 14]]
Rendered games/show.html.erb within layouts/application (352.2ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 388ms (Views: 359.9ms | ActiveRecord: 2.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:36 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:36 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:36 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:36 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:36 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:36 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:36 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:36 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:36 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:36 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:36 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:36 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:36 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:36 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:36 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:36 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:36 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:36 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:36 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:36 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:36 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:36 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:36 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:36 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:36 +0200
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-06-25 20:22:50 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 1]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 26]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 31]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 38]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 46]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 14]]
Rendered games/show.html.erb within layouts/application (8.9ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 22ms (Views: 18.7ms | ActiveRecord: 1.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:50 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:50 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:50 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:50 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:50 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:50 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:50 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:50 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:50 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:50 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:50 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:50 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:50 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:50 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:22:50 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:50 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:50 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:50 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:50 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:50 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:50 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:50 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:50 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:50 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:22:50 +0200
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-06-25 20:23:22 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 1]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 26]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 31]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 38]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 46]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 14]]
Rendered games/show.html.erb within layouts/application (9.1ms)
Rendered shared/_header.html.erb (1.4ms)
Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 22ms (Views: 19.0ms | ActiveRecord: 1.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:23:22 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:23:22 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:23:22 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:23:22 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:23:22 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:23:22 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:23:22 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:23:22 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:23:22 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:23:22 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:23:22 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:23:22 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:23:22 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:23:22 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:23:22 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:23:22 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:23:22 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:23:22 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:23:22 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:23:22 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:23:22 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:23:22 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:23:22 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:23:22 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:23:22 +0200
Started GET “/games” for 127.0.0.1 at 2015-06-25 20:38:51 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.8ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (33.7ms) Rendered games/index.html.erb within layouts/application (39.2ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 55ms (Views: 49.9ms | ActiveRecord: 3.5ms)
Started GET “/games?page=2” for 127.0.0.1 at 2015-06-25 20:38:55 +0200 Processing by GamesController#index as HTML
Parameters: {"page"=>"2"}
Rendered shared/_gallery_selector.html.erb (0.1ms)
[1m[36mUser Load (0.8ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGame Load (0.5ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 8
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 9]]
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 10]]
[1m[36m (0.8ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 11]]
[1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 12]]
Rendered games/_index_gallery.html.erb (126.0ms)
Rendered games/index.html.erb within layouts/application (134.8ms)
Rendered shared/_header.html.erb (1.9ms)
Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 149ms (Views: 144.6ms | ActiveRecord: 3.0ms)
Started GET “/games?page=1” for 127.0.0.1 at 2015-06-25 20:38:57 +0200 Processing by GamesController#index as HTML
Parameters: {"page"=>"1"}
Rendered shared/_gallery_selector.html.erb (0.1ms)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGame Load (0.5ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]]
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]]
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]]
[1m[35m (0.9ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]]
Rendered games/_index_gallery.html.erb (33.2ms)
Rendered games/index.html.erb within layouts/application (37.0ms)
Rendered shared/_header.html.erb (3.3ms)
Rendered shared/_footer.html.erb (2.3ms)
Completed 200 OK in 71ms (Views: 64.3ms | ActiveRecord: 3.4ms)
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-06-25 20:39:00 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[35mGame Load (1.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.3ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 1]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35mGameCode Load (0.2ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 26]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 31]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 38]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 46]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 14]]
Rendered games/show.html.erb within layouts/application (13.6ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 35ms (Views: 24.6ms | ActiveRecord: 2.4ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 20:39:05 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.8ms) [1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (4.0ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (7.4ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094730320840 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (33.6ms) Rendered welcome/index.html.erb within layouts/application (51.2ms) [1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (3.4ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 73ms (Views: 66.6ms | ActiveRecord: 4.1ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 20:40:25 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (1.8ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (1.9ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.7ms) Rendered welcome/index.html.erb within layouts/application (27.3ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.0ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 38ms (Views: 35.6ms | ActiveRecord: 2.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:25 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:25 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:25 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:25 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:25 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:25 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:25 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:25 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:25 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:25 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:25 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:25 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:25 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:25 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:25 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:25 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:25 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:25 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:25 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:25 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:25 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:25 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:25 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:25 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:25 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:40:28 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (4.0ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.5ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (5.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (23.7ms) Rendered welcome/index.html.erb within layouts/application (39.9ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (3.2ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 56ms (Views: 51.4ms | ActiveRecord: 2.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:28 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:28 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:28 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:28 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:28 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:28 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:28 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:28 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:28 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:28 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:28 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:28 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:28 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:28 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:28 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:28 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:28 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:28 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:28 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:28 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:28 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:28 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:28 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:28 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:28 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:40:35 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (1.8ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (22.3ms) Rendered welcome/index.html.erb within layouts/application (31.5ms) [1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (4.6ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 47ms (Views: 43.7ms | ActiveRecord: 2.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:35 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:35 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:35 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:35 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:35 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:35 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:35 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:35 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:35 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:35 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:35 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:35 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:35 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:35 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:35 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:35 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:35 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:35 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:35 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:35 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:35 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:35 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:35 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:35 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:35 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:40:36 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.8ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.8ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (6.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (25.3ms) Rendered welcome/index.html.erb within layouts/application (39.9ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.4ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 51ms (Views: 47.5ms | ActiveRecord: 3.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:36 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:36 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:36 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:36 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:36 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:36 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:36 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:36 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:36 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:36 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:36 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:36 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:36 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:36 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:36 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:36 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:36 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:36 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:36 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:36 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:36 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:36 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:36 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:36 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:36 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:40:40 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.4ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (5.7ms) [1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (7.8ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.7ms) Rendered welcome/index.html.erb within layouts/application (38.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.1ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 52ms (Views: 47.4ms | ActiveRecord: 2.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:40 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:40 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:40 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:40 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:40 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:40 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:40 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:40:41 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (1.8ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (1.9ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (21.1ms) Rendered welcome/index.html.erb within layouts/application (29.6ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.6ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (1.2ms)
Completed 200 OK in 48ms (Views: 45.6ms | ActiveRecord: 2.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:41 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:40:43 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.1ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (3.2ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (36.4ms) Rendered welcome/index.html.erb within layouts/application (47.5ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (1.9ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 59ms (Views: 55.5ms | ActiveRecord: 3.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:43 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:43 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:43 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:43 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:43 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:43 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:43 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:43 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:43 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:43 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:43 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:43 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:44 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:44 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:40:44 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:44 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:44 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:44 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:44 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:44 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:44 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:44 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:44 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:44 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:40:44 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:42:08 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.0ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (1.9ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (23.4ms) Rendered welcome/index.html.erb within layouts/application (32.8ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (1.9ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 43ms (Views: 39.7ms | ActiveRecord: 2.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:08 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:08 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:08 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:08 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:08 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:08 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:08 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:08 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:08 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:08 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:08 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:08 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:08 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:08 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:08 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:08 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:08 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:08 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:08 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:08 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:08 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:09 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:09 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:09 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:09 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:42:10 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.1ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.9ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (5.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (24.3ms) Rendered welcome/index.html.erb within layouts/application (37.4ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.6ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 109ms (Views: 105.8ms | ActiveRecord: 2.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:10 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:10 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:10 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:10 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:10 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:10 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:10 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:10 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:10 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:10 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:10 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:10 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:10 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:10 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:10 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:10 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:10 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:10 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:10 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:10 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:10 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:10 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:10 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:10 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:10 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:42:20 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.1ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.7ms) Rendered welcome/index.html.erb within layouts/application (28.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (1.9ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 39ms (Views: 36.9ms | ActiveRecord: 1.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:20 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:20 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:20 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:20 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:20 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:20 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:20 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:20 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:20 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:20 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:20 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:20 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:20 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:20 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:20 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:20 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:20 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:20 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:20 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:20 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:20 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:20 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:20 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:20 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:20 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:42:21 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.5ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (5.3ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.5ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (4.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (19.7ms) Rendered welcome/index.html.erb within layouts/application (34.9ms) [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (1.7ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 85ms (Views: 81.2ms | ActiveRecord: 2.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:21 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:21 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:21 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:21 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:21 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:21 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:21 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:21 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:21 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:21 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:21 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:21 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:21 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:21 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:21 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:21 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:21 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:21 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:21 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:21 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:21 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:21 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:21 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:21 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:21 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:42:22 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.2ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.1ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (4.4ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (26.1ms) Rendered welcome/index.html.erb within layouts/application (37.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (3.4ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 55ms (Views: 51.7ms | ActiveRecord: 2.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:22 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:22 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:22 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:22 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:22 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:22 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:22 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:22 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:22 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:22 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:22 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:22 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:22 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:22 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:22 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:22 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:22 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:22 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:22 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:22 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:22 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:22 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:22 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:22 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:22 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:42:30 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.7ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.8ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (4.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (23.7ms) Rendered welcome/index.html.erb within layouts/application (36.3ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (3.1ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 52ms (Views: 48.4ms | ActiveRecord: 2.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:30 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:30 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:30 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:30 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:30 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:30 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:30 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:30 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:30 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:30 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:30 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:30 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:30 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:30 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:42:30 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:30 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:31 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:31 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:31 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:31 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:31 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:31 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:31 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:31 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:42:31 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:43:13 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.8ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.5ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.9ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (91.8ms) Rendered welcome/index.html.erb within layouts/application (104.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.3ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 116ms (Views: 112.8ms | ActiveRecord: 2.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:43:13 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:43:13 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:43:13 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:43:13 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:43:13 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:43:13 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:43:13 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:43:13 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:43:13 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:43:13 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:43:13 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:43:13 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:43:13 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:43:13 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:43:13 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:43:13 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:43:13 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:43:13 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:43:13 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:43:13 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:43:13 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:43:13 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:43:13 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:43:13 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:43:13 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:43:23 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.3ms) Rendered welcome/index.html.erb within layouts/application (4.3ms)
Completed 500 Internal Server Error in 6ms
ActionView::Template::Error (Missing partial wigets/hot_games with {:locale=>, :formats=>, :handlers=>[:erb, :builder, :raw, :ruby, :jbuilder]}. Searched in:
* "/Users/rbarisic/rails_projects/game_codes/app/views" * "/Library/Ruby/Gems/2.0.0/gems/devise-3.4.1/app/views"
):
14: </div> 15: 16: <div class="pure-u-1"> 17: <%= render 'wigets/hot_games' %> 18: 19: </div> 20: <div class="pure-u-1 pure-u-md-1-2"> app/views/welcome/index.html.erb:17:in `_app_views_welcome_index_html_erb__3868531133429663600_70094693337680' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.3ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 20:43:47 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.7ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (4.5ms) Rendered welcome/index.html.erb within layouts/application (5.9ms)
Completed 500 Internal Server Error in 9ms
ActionView::Template::Error (Missing partial wigets/hot_games with {:locale=>, :formats=>, :handlers=>[:erb, :builder, :raw, :ruby, :jbuilder]}. Searched in:
* "/Users/rbarisic/rails_projects/game_codes/app/views" * "/Library/Ruby/Gems/2.0.0/gems/devise-3.4.1/app/views"
):
14: </div> 15: 16: <div class="pure-u-1"> 17: <%= render 'wigets/hot_games' %> 18: 19: </div> 20: <div class="pure-u-1 pure-u-md-1-2"> app/views/welcome/index.html.erb:17:in `_app_views_welcome_index_html_erb__3868531133429663600_70094693337680' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.6ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 20:43:48 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.3ms) Rendered welcome/index.html.erb within layouts/application (3.7ms)
Completed 500 Internal Server Error in 6ms
ActionView::Template::Error (Missing partial wigets/hot_games with {:locale=>, :formats=>, :handlers=>[:erb, :builder, :raw, :ruby, :jbuilder]}. Searched in:
* "/Users/rbarisic/rails_projects/game_codes/app/views" * "/Library/Ruby/Gems/2.0.0/gems/devise-3.4.1/app/views"
):
14: </div> 15: 16: <div class="pure-u-1"> 17: <%= render 'wigets/hot_games' %> 18: 19: </div> 20: <div class="pure-u-1 pure-u-md-1-2"> app/views/welcome/index.html.erb:17:in `_app_views_welcome_index_html_erb__3868531133429663600_70094693337680' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.6ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 20:43:49 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.6ms) Rendered welcome/index.html.erb within layouts/application (4.1ms)
Completed 500 Internal Server Error in 6ms
ActionView::Template::Error (Missing partial wigets/hot_games with {:locale=>, :formats=>, :handlers=>[:erb, :builder, :raw, :ruby, :jbuilder]}. Searched in:
* "/Users/rbarisic/rails_projects/game_codes/app/views" * "/Library/Ruby/Gems/2.0.0/gems/devise-3.4.1/app/views"
):
14: </div> 15: 16: <div class="pure-u-1"> 17: <%= render 'wigets/hot_games' %> 18: 19: </div> 20: <div class="pure-u-1 pure-u-md-1-2"> app/views/welcome/index.html.erb:17:in `_app_views_welcome_index_html_erb__3868531133429663600_70094693337680' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.2ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 20:44:14 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.4ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE (coin_multiplier = 1)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__hot_games_html_erb___2823163983370522018_70094733184160 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_hot_games.html.erb:9)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_hot_games.html.erb (75.9ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (4.5ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (14.8ms) Rendered welcome/index.html.erb within layouts/application (104.6ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.7ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 118ms (Views: 114.3ms | ActiveRecord: 2.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:14 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:14 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:14 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:14 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:14 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:14 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:14 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:14 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:14 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:14 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:14 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:14 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:14 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:14 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:14 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:14 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:14 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:14 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:14 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:14 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:14 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:14 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:14 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:14 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:14 +0200
Started GET “/assets/fontawesome-webfont.woff?v=4.3.0” for 127.0.0.1 at 2015-06-25 20:44:14 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:44:17 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (4.4ms) [1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" WHERE (coin_multiplier = 1)[0m
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__hot_games_html_erb___2823163983370522018_70094733184160 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_hot_games.html.erb:9)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_hot_games.html.erb (23.3ms) [1m[36mGame Load (0.4ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (6.9ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (4.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (22.7ms) Rendered welcome/index.html.erb within layouts/application (66.3ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.8ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 80ms (Views: 75.6ms | ActiveRecord: 3.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:17 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:17 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:17 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:17 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:17 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:17 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:17 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:17 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:17 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:17 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:17 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:17 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:17 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:17 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:17 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:17 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:17 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:17 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:17 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:17 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:17 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:17 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:17 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:17 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:17 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:44:28 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.6ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.7ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (4.8ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (77.3ms) Rendered welcome/index.html.erb within layouts/application (91.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.2ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 106ms (Views: 102.6ms | ActiveRecord: 2.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:28 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:28 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:28 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:28 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:28 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:28 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:28 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:28 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:28 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:28 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:28 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:28 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:28 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:28 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:28 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:28 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:28 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:28 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:28 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:28 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:28 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:28 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:28 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:28 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:28 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:44:29 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (7.3ms) [1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.7ms) [1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (8.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (25.8ms) Rendered welcome/index.html.erb within layouts/application (50.3ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.2ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 67ms (Views: 62.4ms | ActiveRecord: 3.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:29 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:29 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:29 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:29 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:29 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:29 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:29 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:29 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:29 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:29 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:29 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:29 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:29 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:29 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:29 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:29 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:29 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:29 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:29 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:29 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:29 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:29 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:29 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:29 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:29 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:44:31 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.6ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE (coin_multiplier = 1)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__hot_games_html_erb___2823163983370522018_70094733184160 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_hot_games.html.erb:9)
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_hot_games.html.erb (73.1ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.6ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (16.5ms) Rendered welcome/index.html.erb within layouts/application (101.5ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (3.4ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 118ms (Views: 112.9ms | ActiveRecord: 3.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:31 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:31 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:31 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:31 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:31 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:31 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:31 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:31 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:31 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:31 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:31 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:31 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:31 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:31 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:31 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:31 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:31 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:31 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:31 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:31 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:31 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:31 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:31 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:31 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:31 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:44:53 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.1ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE (coin_multiplier = 1)[0m
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__hot_games_html_erb___2823163983370522018_70094706994080 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_hot_games.html.erb:9)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_hot_games.html.erb (22.0ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (4.7ms) [1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (6.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (14.1ms) Rendered welcome/index.html.erb within layouts/application (53.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.0ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 64ms (Views: 59.8ms | ActiveRecord: 3.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:53 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:53 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:53 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:53 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:53 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:53 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:53 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:53 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:53 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:53 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:53 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:53 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:53 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:53 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:53 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:53 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:53 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:53 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:53 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:53 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:53 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:53 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:53 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:53 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:53 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:44:59 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.8ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE (coin_multiplier = 1)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__hot_games_html_erb___2823163983370522018_70094708683720 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_hot_games.html.erb:9)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_hot_games.html.erb (18.6ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.9ms) [1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (6.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (59.0ms) Rendered welcome/index.html.erb within layouts/application (95.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.2ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 108ms (Views: 102.8ms | ActiveRecord: 4.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:59 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:59 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:59 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:59 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:59 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:59 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:59 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:59 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:59 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:59 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:59 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:59 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:59 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:59 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:44:59 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:59 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:59 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:59 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:59 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:59 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:59 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:59 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:59 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:59 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:44:59 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:45:11 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.3ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE (coin_multiplier = 1)[0m
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__hot_games_html_erb___2823163983370522018_70094706642120 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_hot_games.html.erb:9)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_hot_games.html.erb (10.7ms) [1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (4.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.1ms) Rendered welcome/index.html.erb within layouts/application (41.6ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.0ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 54ms (Views: 50.5ms | ActiveRecord: 2.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:11 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:11 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:11 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:11 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:11 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:11 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:11 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:11 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:11 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:11 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:11 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:11 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:11 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:11 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:11 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:11 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:11 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:11 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:11 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:11 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:11 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:11 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:11 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:11 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:11 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:45:25 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.0ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE (coin_multiplier = 1) Rendered widgets/_hot_games.html.erb (1.8ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.3ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.0ms) Rendered welcome/index.html.erb within layouts/application (29.8ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (3.1ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 44ms (Views: 40.4ms | ActiveRecord: 2.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:25 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:25 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:25 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:25 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:25 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:26 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:26 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:26 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:26 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:26 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:26 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:26 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:26 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:26 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:26 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:26 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:26 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:26 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:26 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:26 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:26 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:26 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:26 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:26 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:26 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:45:36 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.4ms) Rendered widgets/_hot_games.html.erb (0.8ms) Rendered welcome/index.html.erb within layouts/application (4.4ms)
Completed 500 Internal Server Error in 6ms
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/views/widgets/_hot_games.html.erb:27: syntax error, unexpected keyword_ensure, expecting end-of-input):
app/views/welcome/index.html.erb:17:in `_app_views_welcome_index_html_erb__3868531133429663600_70094703013000' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.9ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 20:45:44 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (4.3ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE (coin_multiplier = 1)[0m Rendered widgets/_hot_games.html.erb (3.0ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (5.2ms) [1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (6.4ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (15.7ms) Rendered welcome/index.html.erb within layouts/application (39.0ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.1ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 52ms (Views: 48.2ms | ActiveRecord: 2.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:44 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:44 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:44 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:44 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:44 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:44 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:44 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:44 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:44 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:44 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:44 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:44 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:44 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:44 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:44 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:44 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:44 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:44 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:44 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:44 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:44 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:44 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:44 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:44 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:44 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:45:51 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (1.9ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE (coin_multiplier)[0m Rendered widgets/_hot_games.html.erb (1.7ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.3ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.1ms) Rendered welcome/index.html.erb within layouts/application (30.0ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.1ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 43ms (Views: 39.9ms | ActiveRecord: 2.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:51 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:51 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:51 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:51 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:51 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:51 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:51 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:51 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:51 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:51 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:51 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:51 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:51 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:51 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:45:51 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:51 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:51 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:51 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:51 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:51 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:51 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:51 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:51 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:51 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:45:51 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:45:57 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.2ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE (coin_multiplier = *)[0m
SQLite3::SQLException: near “*”: syntax error: SELECT “games”.* FROM “games” WHERE (coin_multiplier = *)
Rendered widgets/_hot_games.html.erb (1.7ms) Rendered welcome/index.html.erb within layouts/application (4.9ms)
Completed 500 Internal Server Error in 8ms
ActionView::Template::Error (SQLite3::SQLException: near “*”: syntax error: SELECT “games”.* FROM “games” WHERE (coin_multiplier = *)):
1: <!-- These are Games that have an active Coin Multiplier -->
2:
3: <% cache do %>
4: <%= puts @hot_games = Game.where("coin_multiplier = *") %>
5:
6: <% end %>
7:
app/views/widgets/_hot_games.html.erb:4:in `puts'
app/views/widgets/_hot_games.html.erb:4:in `puts'
app/views/widgets/_hot_games.html.erb:4:in `block in _app_views_widgets__hot_games_html_erb___2823163983370522018_70094701337480'
app/views/widgets/_hot_games.html.erb:3:in `_app_views_widgets__hot_games_html_erb___2823163983370522018_70094701337480'
app/views/welcome/index.html.erb:17:in `_app_views_welcome_index_html_erb__3868531133429663600_70094703013000'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.0ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 20:45:58 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.0ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE (coin_multiplier = *)[0m
SQLite3::SQLException: near “*”: syntax error: SELECT “games”.* FROM “games” WHERE (coin_multiplier = *)
Rendered widgets/_hot_games.html.erb (0.9ms) Rendered welcome/index.html.erb within layouts/application (3.8ms)
Completed 500 Internal Server Error in 6ms
ActionView::Template::Error (SQLite3::SQLException: near “*”: syntax error: SELECT “games”.* FROM “games” WHERE (coin_multiplier = *)):
1: <!-- These are Games that have an active Coin Multiplier -->
2:
3: <% cache do %>
4: <%= puts @hot_games = Game.where("coin_multiplier = *") %>
5:
6: <% end %>
7:
app/views/widgets/_hot_games.html.erb:4:in `puts'
app/views/widgets/_hot_games.html.erb:4:in `puts'
app/views/widgets/_hot_games.html.erb:4:in `block in _app_views_widgets__hot_games_html_erb___2823163983370522018_70094701337480'
app/views/widgets/_hot_games.html.erb:3:in `_app_views_widgets__hot_games_html_erb___2823163983370522018_70094701337480'
app/views/welcome/index.html.erb:17:in `_app_views_welcome_index_html_erb__3868531133429663600_70094703013000'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.8ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 20:46:03 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.6ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE (coin_multiplier)[0m Rendered widgets/_hot_games.html.erb (1.6ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.3ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (4.6ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (20.4ms) Rendered welcome/index.html.erb within layouts/application (34.5ms) [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.1ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 49ms (Views: 44.6ms | ActiveRecord: 2.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:03 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:03 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:03 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:03 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:03 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:03 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:03 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:03 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:03 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:03 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:03 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:03 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:03 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:03 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:03 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:03 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:03 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:03 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:03 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:03 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:03 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:03 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:03 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:03 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:03 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:46:07 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.0ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE (coin_multiplier > 0)[0m Rendered widgets/_hot_games.html.erb (1.6ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (17.3ms) Rendered welcome/index.html.erb within layouts/application (28.6ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.2ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 89ms (Views: 85.5ms | ActiveRecord: 2.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:46:08 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.4ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE (coin_multiplier > 0)[0m Rendered widgets/_hot_games.html.erb (1.2ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.3ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (5.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (35.6ms) Rendered welcome/index.html.erb within layouts/application (49.3ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.7ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 68ms (Views: 63.3ms | ActiveRecord: 3.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:08 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:46:14 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (1.8ms) [1m[36mCACHE (0.0ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered widgets/_hot_games.html.erb (1.9ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.9ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (7.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (15.1ms) Rendered welcome/index.html.erb within layouts/application (31.9ms) [1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (53.4ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 98ms (Views: 94.8ms | ActiveRecord: 2.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:15 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:15 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:15 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:15 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:15 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:15 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:15 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:15 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:15 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:15 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:15 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:15 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:15 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:15 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:15 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:15 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:15 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:15 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:15 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:15 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:15 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:15 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:15 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:15 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:15 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:46:30 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.0ms) [1m[36mCACHE (0.0ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered widgets/_hot_games.html.erb (1.8ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.6ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (19.6ms) Rendered welcome/index.html.erb within layouts/application (33.2ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (1.9ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 45ms (Views: 41.7ms | ActiveRecord: 2.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:30 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:30 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:30 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:30 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:30 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:30 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:30 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:30 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:30 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:30 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:30 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:30 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:30 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:30 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:30 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:30 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:30 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:30 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:30 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:30 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:30 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:30 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:30 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:30 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:30 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:46:31 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.2ms) [1m[36mCACHE (0.0ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered widgets/_hot_games.html.erb (1.7ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (4.5ms) [1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (6.8ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (29.5ms) Rendered welcome/index.html.erb within layouts/application (50.9ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.3ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 68ms (Views: 63.3ms | ActiveRecord: 3.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:31 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:31 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:31 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:31 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:31 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:31 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:31 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:31 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:31 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:31 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:31 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:31 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:31 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:31 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:31 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:31 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:31 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:31 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:31 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:31 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:31 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:31 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:31 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:31 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:31 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:46:37 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.4ms) [1m[36mCACHE (0.0ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered widgets/_hot_games.html.erb (2.0ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.8ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.9ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (87.9ms) Rendered welcome/index.html.erb within layouts/application (101.8ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.5ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 114ms (Views: 110.7ms | ActiveRecord: 2.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:37 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:37 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:37 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:37 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:37 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:37 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:37 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:37 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:37 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:37 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:37 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:37 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:37 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:37 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:37 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:37 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:37 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:37 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:37 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:37 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:37 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:37 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:37 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:37 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:37 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:46:44 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (1.9ms) [1m[36mCACHE (0.0ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered widgets/_hot_games.html.erb (1.4ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (7.6ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (24.3ms) Rendered welcome/index.html.erb within layouts/application (40.6ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.2ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 54ms (Views: 50.8ms | ActiveRecord: 2.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:44 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:44 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:44 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:44 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:44 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:44 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:44 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:44 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:44 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:44 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:44 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:44 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:44 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:44 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:46:44 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:44 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:44 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:44 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:44 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:44 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:44 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:44 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:44 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:44 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:46:44 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:47:02 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (1.9ms) [1m[36mCACHE (0.0ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered widgets/_hot_games.html.erb (1.5ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.3ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (86.7ms) Rendered welcome/index.html.erb within layouts/application (98.5ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (3.1ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 114ms (Views: 109.9ms | ActiveRecord: 3.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:02 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:02 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:02 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:02 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:02 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:02 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:02 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:02 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:02 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:02 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:02 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:02 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:02 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:02 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:02 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:02 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:02 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:02 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:02 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:02 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:02 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:02 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:02 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:02 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:02 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:47:35 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.1ms) Rendered widgets/_hot_games.html.erb (0.5ms) Rendered welcome/index.html.erb within layouts/application (3.5ms)
Completed 500 Internal Server Error in 5ms
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/views/widgets/_hot_games.html.erb:13: syntax error, unexpected '<', expecting keyword_end
<p class="text-center">Earn up... ^
/Users/rbarisic/rails_projects/game_codes/app/views/widgets/_hot_games.html.erb:13: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' … <p class=“text-center”>Earn up to x8 Coins by adding… … ^ /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_hot_games.html.erb:13: unknown regexp option - p /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_hot_games.html.erb:14: syntax error, unexpected '<'
</div> ^
/Users/rbarisic/rails_projects/game_codes/app/views/widgets/_hot_games.html.erb:15: unknown regexp options - dv /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_hot_games.html.erb:17: syntax error, unexpected '<'
<div class="content"> ^
/Users/rbarisic/rails_projects/game_codes/app/views/widgets/_hot_games.html.erb:18: syntax error, unexpected '<'
<% @hot_games.each do |m| @output_buffer.safe_append=' ^
/Users/rbarisic/rails_projects/game_codes/app/views/widgets/_hot_games.html.erb:18: syntax error, unexpected keyword_do_block, expecting keyword_end
<% @hot_games.each do |m| @output_buffer.safe_append='
^
/Users/rbarisic/rails_projects/game_codes/app/views/widgets/_hot_games.html.erb:24: syntax error, unexpected keyword_ensure, expecting end-of-input):
app/views/welcome/index.html.erb:17:in `_app_views_welcome_index_html_erb__3868531133429663600_70094703013000' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.2ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 20:47:47 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.3ms) [1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" Rendered widgets/_hot_games.html.erb (1.3ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.1ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (17.3ms) Rendered welcome/index.html.erb within layouts/application (28.6ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.7ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 41ms (Views: 37.8ms | ActiveRecord: 2.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:47 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:47 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:47 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:47 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:47 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:47 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:47 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:47 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:47 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:47 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:47 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:47 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:47 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:47 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:47 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:47 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:47 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:47 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:47 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:47 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:47 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:47 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:47 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:47 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:47 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:47:56 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (4.8ms) [1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" Rendered widgets/_hot_games.html.erb (2.1ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.7ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (7.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (71.1ms) Rendered welcome/index.html.erb within layouts/application (92.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (3.7ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 108ms (Views: 104.1ms | ActiveRecord: 2.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:56 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:56 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:56 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:56 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:56 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:56 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:56 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:56 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:56 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:56 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:56 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:56 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:56 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:56 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:56 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:56 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:56 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:56 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:56 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:56 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:56 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:56 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:56 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:56 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:56 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:47:59 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.5ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (5.3ms) [1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" Rendered widgets/_hot_games.html.erb (2.5ms) [1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.8ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (14.0ms) Rendered welcome/index.html.erb within layouts/application (32.7ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.7ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 46ms (Views: 42.6ms | ActiveRecord: 2.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:59 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:59 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:59 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:59 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:59 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:59 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:59 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:59 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:59 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:59 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:59 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:59 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:59 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:59 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:47:59 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:59 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:59 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:59 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:59 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:59 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:59 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:59 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:59 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:59 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:47:59 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:48:14 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.5ms) [1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" Rendered widgets/_hot_games.html.erb (1.5ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (4.8ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (5.6ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (19.5ms) Rendered welcome/index.html.erb within layouts/application (38.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (1.9ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 48ms (Views: 44.9ms | ActiveRecord: 2.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:14 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:14 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:14 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:14 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:14 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:14 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:14 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:14 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:14 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:14 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:14 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:14 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:14 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:14 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:14 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:14 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:14 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:14 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:14 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:14 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:14 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:14 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:14 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:14 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:14 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:48:27 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.3ms) [1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" Rendered widgets/_hot_games.html.erb (1.2ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.3ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.9ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (13.2ms) Rendered welcome/index.html.erb within layouts/application (26.8ms) [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.2ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 40ms (Views: 37.2ms | ActiveRecord: 2.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:27 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:27 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:27 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:27 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:27 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:27 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:27 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:27 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:27 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:27 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:27 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:27 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:27 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:27 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:27 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:27 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:27 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:27 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:27 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:27 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:27 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:27 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:27 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:27 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:27 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:48:38 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.2ms) [1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" Rendered widgets/_hot_games.html.erb (1.5ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.3ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (19.1ms) Rendered welcome/index.html.erb within layouts/application (30.6ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (3.6ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 44ms (Views: 40.8ms | ActiveRecord: 2.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:38 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:38 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:38 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:38 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:38 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:38 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:38 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:38 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:38 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:38 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:38 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:38 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:38 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:38 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:38 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:38 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:38 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:38 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:38 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:38 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:38 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:38 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:38 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:38 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:38 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:48:42 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.0ms) [1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" Rendered widgets/_hot_games.html.erb (1.3ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.9ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (22.4ms) Rendered welcome/index.html.erb within layouts/application (34.5ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (57.2ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 101ms (Views: 98.1ms | ActiveRecord: 2.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:42 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:42 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:42 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:42 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:42 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:42 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:42 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:42 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:42 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:42 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:42 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:42 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:42 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:42 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:48:42 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:42 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:42 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:42 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:42 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:42 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:42 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:42 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:42 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:42 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:48:42 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:49:00 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.4ms) [1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" Rendered widgets/_hot_games.html.erb (1.4ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (21.6ms) Rendered welcome/index.html.erb within layouts/application (33.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (3.0ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 47ms (Views: 44.0ms | ActiveRecord: 2.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:00 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:00 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:00 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:00 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:00 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:00 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:00 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:00 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:00 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:00 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:00 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:00 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:00 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:00 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:00 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:00 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:00 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:00 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:00 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:00 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:00 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:00 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:00 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:00 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:00 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:49:18 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.3ms) [1m[35mCACHE (0.1ms)[0m SELECT "games".* FROM "games" Rendered widgets/_hot_games.html.erb (1.9ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.6ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (4.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (21.0ms) Rendered welcome/index.html.erb within layouts/application (34.9ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (3.6ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 86ms (Views: 81.9ms | ActiveRecord: 3.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:18 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:18 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:18 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:18 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:18 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:18 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:18 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:18 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:18 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:18 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:19 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:19 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:19 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:19 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:19 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:19 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:19 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:19 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:19 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:19 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:19 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:19 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:19 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:19 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:19 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:49:23 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.6ms) [1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" Rendered widgets/_hot_games.html.erb (3.1ms) [1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.3ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (4.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (24.8ms) Rendered welcome/index.html.erb within layouts/application (43.4ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.5ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 57ms (Views: 52.9ms | ActiveRecord: 2.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:23 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:23 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:23 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:23 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:23 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:23 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:23 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:23 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:23 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:23 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:23 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:23 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:23 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:23 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:23 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:23 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:23 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:23 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:23 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:23 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:23 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:23 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:23 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:23 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:23 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 20:49:50 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.4ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.6ms) [1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" Rendered widgets/_hot_games.html.erb (1.6ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.1ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (4.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (17.2ms) Rendered welcome/index.html.erb within layouts/application (32.9ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.2ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 44ms (Views: 41.5ms | ActiveRecord: 2.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:50 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:50 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:50 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:50 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:50 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:50 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:50 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:50 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:50 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:50 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:50 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:50 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:50 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:50 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:49:50 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:50 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:50 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:50 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:50 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:50 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:50 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:50 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:50 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:50 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:49:50 +0200
Started GET “/users/52” for 127.0.0.1 at 2015-06-25 20:57:42 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "52"]]
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 52]]
[1m[36mGameCode Exists (0.3ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 52]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (9.2ms)
Rendered shared/_header.html.erb (1.9ms)
Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 119ms (Views: 116.1ms | ActiveRecord: 1.0ms)
Started GET “/games” for 127.0.0.1 at 2015-06-25 20:57:42 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.2ms) [1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.7ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (42.2ms) Rendered games/index.html.erb within layouts/application (50.8ms) Rendered shared/_header.html.erb (4.5ms) Rendered shared/_footer.html.erb (4.5ms)
Completed 200 OK in 81ms (Views: 75.6ms | ActiveRecord: 3.8ms)
Started GET “/users/52” for 127.0.0.1 at 2015-06-25 20:57:43 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "52"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 52]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 52]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (4.8ms)
Rendered shared/_header.html.erb (0.9ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 17ms (Views: 15.1ms | ActiveRecord: 0.5ms)
Started GET “/users” for 127.0.0.1 at 2015-06-25 20:57:44 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (5.4ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 16ms (Views: 14.3ms | ActiveRecord: 0.5ms)
Started GET “/users/52” for 127.0.0.1 at 2015-06-25 20:57:44 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "52"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 52]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 52]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (2.8ms)
Rendered shared/_header.html.erb (0.9ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 13ms (Views: 11.2ms | ActiveRecord: 0.5ms)
Started GET “/users/52” for 127.0.0.1 at 2015-06-25 20:57:54 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "52"]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 52]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 52]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (5.6ms)
Rendered shared/_header.html.erb (2.1ms)
Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 24ms (Views: 22.2ms | ActiveRecord: 0.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:57:54 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:57:54 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:57:54 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:57:54 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:57:54 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:57:54 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:57:54 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:57:54 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:57:54 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:57:54 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:57:54 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:57:54 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:57:54 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:57:54 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:57:54 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:57:54 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:57:54 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:57:54 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:57:54 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:57:54 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:57:54 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:57:54 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:57:54 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:57:54 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:57:54 +0200
Started GET “/users/52” for 127.0.0.1 at 2015-06-25 20:58:03 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "52"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 52]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 52]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (4.2ms)
Rendered shared/_header.html.erb (0.9ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 14ms (Views: 12.2ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:03 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:03 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:03 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:03 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:03 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:03 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:03 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:03 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:03 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:03 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:03 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:03 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:03 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:03 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:03 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:03 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:03 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:03 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:03 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:03 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:03 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:03 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:03 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:03 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:03 +0200
Started GET “/users/52” for 127.0.0.1 at 2015-06-25 20:58:06 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "52"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 52]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 52]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (3.8ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 19ms (Views: 14.0ms | ActiveRecord: 0.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:06 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:06 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:06 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:06 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:06 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:06 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:06 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:06 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:06 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:06 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:06 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:06 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:06 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:06 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:06 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:06 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:06 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:06 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:06 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:06 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:06 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:06 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:06 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:06 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:06 +0200
Started GET “/users/52” for 127.0.0.1 at 2015-06-25 20:58:17 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "52"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 52]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 52]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (4.4ms)
Rendered shared/_header.html.erb (1.6ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:17 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:17 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:17 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:17 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:17 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:17 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:17 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:17 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:17 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:17 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:17 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:17 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:17 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:17 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:58:17 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:17 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:17 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:17 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:17 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:17 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:17 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:17 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:17 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:17 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:58:17 +0200
Started GET “/games” for 127.0.0.1 at 2015-06-25 20:58:22 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (56.2ms) Rendered games/index.html.erb within layouts/application (58.6ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 70ms (Views: 67.4ms | ActiveRecord: 1.4ms)
Started GET “/games” for 127.0.0.1 at 2015-06-25 20:59:08 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (19.5ms) Rendered games/index.html.erb within layouts/application (22.7ms) Rendered shared/_header.html.erb (1.6ms) Rendered shared/_footer.html.erb (62.6ms)
Completed 200 OK in 98ms (Views: 95.0ms | ActiveRecord: 1.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:08 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:08 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:08 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:08 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:08 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:08 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:08 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:08 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:08 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:08 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:08 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:08 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:08 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:08 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:08 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:59:08 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:59:08 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:59:08 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:59:08 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:59:08 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:59:08 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:59:08 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:59:08 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:59:08 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:59:08 +0200
Started GET “/games” for 127.0.0.1 at 2015-06-25 20:59:12 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.2ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (18.9ms) Rendered games/index.html.erb within layouts/application (25.5ms) Rendered shared/_header.html.erb (1.9ms) Rendered shared/_footer.html.erb (1.3ms)
Completed 200 OK in 48ms (Views: 44.5ms | ActiveRecord: 2.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:13 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:13 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:13 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:13 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:13 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:13 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:13 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:13 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:13 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:13 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:13 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:13 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:13 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:13 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 20:59:13 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 20:59:13 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 20:59:13 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 20:59:13 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 20:59:13 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 20:59:13 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 20:59:13 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 20:59:13 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 20:59:13 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 20:59:13 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 20:59:13 +0200
Started GET “/games” for 127.0.0.1 at 2015-06-25 21:09:05 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (52.6ms) Rendered games/index.html.erb within layouts/application (57.6ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 142ms (Views: 65.2ms | ActiveRecord: 3.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 21:09:06 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 21:09:06 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 21:09:06 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 21:09:06 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 21:09:06 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 21:09:06 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 21:09:06 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 21:09:06 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 21:09:06 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 21:09:06 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 21:09:06 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 21:09:06 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 21:09:06 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 21:09:06 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 21:09:06 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 21:09:06 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 21:09:06 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 21:09:06 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 21:09:06 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 21:09:06 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 21:09:06 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 21:09:06 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 21:09:06 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 21:09:06 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 21:09:06 +0200
Started DELETE “/users/sign_out” for 127.0.0.1 at 2015-06-25 21:11:29 +0200 Processing by Devise::SessionsController#destroy as HTML
Parameters: {"authenticity_token"=>"fWSxjFyKf7nO7r76i8KZZMJo9dhBhBF2fwpges7hEdw="}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mSQL (0.5ms)[0m [1mUPDATE "users" SET "remember_created_at" = ?, "updated_at" = ? WHERE "users"."id" = 52[0m [["remember_created_at", nil], ["updated_at", Thu, 25 Jun 2015 19:11:30 UTC +00:00]]
[1m[35m (1.5ms)[0m commit transaction
Redirected to localhost:3000/ Completed 302 Found in 23ms (ActiveRecord: 2.3ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 21:11:30 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (14.4ms) [1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" Rendered widgets/_hot_games.html.erb (1.6ms) [1m[36mGame Load (1.0ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (6.4ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (5.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (20.2ms) Rendered welcome/index.html.erb within layouts/application (52.5ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 76ms (Views: 60.4ms | ActiveRecord: 4.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:30 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:30 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:30 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:30 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:30 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:30 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:30 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:30 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:30 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:30 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:30 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:30 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:30 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:30 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:30 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 21:11:30 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 21:11:30 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 21:11:30 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 21:11:30 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 21:11:30 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 21:11:30 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 21:11:30 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 21:11:30 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 21:11:30 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 21:11:30 +0200
Started GET “/users/sign_up” for 127.0.0.1 at 2015-06-25 21:11:31 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.6ms) Rendered devise/registrations/new.html.erb within layouts/application (5.0ms) Rendered shared/_header.html.erb (1.7ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 115ms (Views: 112.2ms | ActiveRecord: 0.0ms)
Started GET “/users/sign_in” for 127.0.0.1 at 2015-06-25 21:11:32 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (0.3ms) Rendered devise/sessions/new.html.erb within layouts/application (2.8ms) Rendered shared/_header.html.erb (2.5ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 19ms (Views: 16.9ms | ActiveRecord: 0.0ms)
Started POST “/users/sign_in” for 127.0.0.1 at 2015-06-25 21:11:35 +0200 Processing by Devise::SessionsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"rcrpWVhDy22TP3sJC0nxoS/ARkoD8i46JhFLAs5v6KI=", "user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."email" = 'admin@example.com' ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mSQL (0.5ms)[0m UPDATE "users" SET "current_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", Thu, 25 Jun 2015 19:11:35 UTC +00:00], ["sign_in_count", 2], ["updated_at", Thu, 25 Jun 2015 19:11:35 UTC +00:00]]
[1m[36m (1.5ms)[0m [1mcommit transaction[0m
Redirected to localhost:3000/ Completed 302 Found in 76ms (ActiveRecord: 2.3ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 21:11:35 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.2ms) [1m[36mCACHE (0.0ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered widgets/_hot_games.html.erb (0.8ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (3.9ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.7ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.0ms) Rendered welcome/index.html.erb within layouts/application (31.8ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.7ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 44ms (Views: 41.5ms | ActiveRecord: 2.1ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:35 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:35 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:35 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:35 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:35 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:35 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:35 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:35 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:35 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:35 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:35 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:35 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:35 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:35 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 21:11:35 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 21:11:35 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 21:11:35 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 21:11:35 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 21:11:35 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 21:11:35 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 21:11:35 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 21:11:35 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 21:11:35 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 21:11:35 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 21:11:35 +0200
Started GET “/games” for 127.0.0.1 at 2015-06-25 21:11:37 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (23.1ms) Rendered games/index.html.erb within layouts/application (30.0ms) Rendered shared/_header.html.erb (3.6ms) Rendered shared/_footer.html.erb (2.0ms)
Completed 200 OK in 54ms (Views: 49.9ms | ActiveRecord: 2.2ms)
Started GET “/games/new” for 127.0.0.1 at 2015-06-25 21:11:39 +0200 Processing by GamesController#new as HTML
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered games/new.html.erb within layouts/application (12.3ms) Rendered shared/_header.html.erb (2.1ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 33ms (Views: 29.7ms | ActiveRecord: 0.3ms)
Started POST “/games” for 127.0.0.1 at 2015-06-25 21:12:46 +0200 Processing by GamesController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"foEBj4mbKyoB1ptQIRMtAQsqZUZEB7K3yiZ3XckOI4A=", "game"=>{"name"=>"GO!! GO!! Hentai PaNIC?? //<Hack Slasher> Tenkaichi 3", "creator"=>"Fuji-Katsu ", "company_url"=>"http://www.fujikatsunohagiushu.co.jp", "cover_url"=>"", "code_length"=>"4", "description"=>"GO!! GO!! Hentai PaNIC?? //<Hack Slasher> Tenkaichi 3 is the best game EVER!!!"}, "commit"=>"Create Game"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mGame Exists (0.2ms)[0m SELECT 1 AS one FROM "games" WHERE ("games"."id" IS NOT NULL) AND "games"."slug" = 'go-go-hentai-panic-hack-slasher-tenkaichi-3' LIMIT 1
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
Rendered games/new.html.erb within layouts/application (3.7ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 211ms (Views: 13.1ms | ActiveRecord: 0.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 21:12:47 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 21:12:47 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 21:12:47 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 21:12:47 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 21:12:47 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 21:12:47 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 21:12:47 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 21:12:47 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 21:12:47 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 21:12:47 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 21:12:47 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 21:12:47 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 21:12:47 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 21:12:47 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 21:12:47 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 21:12:47 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 21:12:47 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 21:12:47 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 21:12:47 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 21:12:47 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 21:12:47 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 21:12:47 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 21:12:47 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 21:12:47 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 21:12:47 +0200
Started POST “/games” for 127.0.0.1 at 2015-06-25 21:13:37 +0200 Processing by GamesController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"foEBj4mbKyoB1ptQIRMtAQsqZUZEB7K3yiZ3XckOI4A=", "game"=>{"name"=>"GO!! GO!! Hentai PaNIC?? //<Hack Slasher> Tenkaichi 3", "creator"=>"Fuji-Katsu ", "company_url"=>"http://www.fujikatsunohagiushu.co.jp", "cover_url"=>"https://p.dreamwidth.org/2ae07410a507/i.imgur.com/HGBJXpE.gif", "code_length"=>"4", "description"=>"GO!! GO!! Hentai PaNIC?? //<Hack Slasher> Tenkaichi 3 is the best game EVER!!!"}, "commit"=>"Create Game"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mGame Exists (0.2ms)[0m SELECT 1 AS one FROM "games" WHERE ("games"."id" IS NOT NULL) AND "games"."slug" = 'go-go-hentai-panic-hack-slasher-tenkaichi-3' LIMIT 1
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "games" ("code_length", "company_url", "cover_url", "created_at", "creator", "description", "name", "slug", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["code_length", 4], ["company_url", "http://www.fujikatsunohagiushu.co.jp"], ["cover_url", "https://p.dreamwidth.org/2ae07410a507/i.imgur.com/HGBJXpE.gif"], ["created_at", Thu, 25 Jun 2015 19:13:37 UTC +00:00], ["creator", "Fuji-Katsu "], ["description", "GO!! GO!! Hentai PaNIC?? //<Hack Slasher> Tenkaichi 3 is the best game EVER!!!"], ["name", "GO!! GO!! Hentai PaNIC?? //<Hack Slasher> Tenkaichi 3"], ["slug", "go-go-hentai-panic-hack-slasher-tenkaichi-3"], ["updated_at", Thu, 25 Jun 2015 19:13:37 UTC +00:00]]
[1m[35m (0.7ms)[0m commit transaction
Redirected to localhost:3000/games/go-go-hentai-panic-hack-slasher-tenkaichi-3 Completed 302 Found in 9ms (ActiveRecord: 1.7ms)
Started GET “/games/go-go-hentai-panic-hack-slasher-tenkaichi-3” for 127.0.0.1 at 2015-06-25 21:13:37 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"go-go-hentai-panic-hack-slasher-tenkaichi-3"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'go-go-hentai-panic-hack-slasher-tenkaichi-3' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 13]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 13]]
Rendered games/show.html.erb within layouts/application (6.3ms)
Rendered shared/_header.html.erb (1.3ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 29ms (Views: 16.6ms | ActiveRecord: 0.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 21:13:37 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 21:13:37 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 21:13:37 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 21:13:37 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 21:13:37 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 21:13:37 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 21:13:37 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 21:13:37 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 21:13:37 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 21:13:37 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 21:13:37 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 21:13:37 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 21:13:38 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 21:13:38 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 21:13:38 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 21:13:38 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 21:13:38 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 21:13:38 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 21:13:38 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 21:13:38 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 21:13:38 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 21:13:38 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 21:13:38 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 21:13:38 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 21:13:38 +0200
Started GET “/games” for 127.0.0.1 at 2015-06-25 21:13:40 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (14.4ms) Rendered games/index.html.erb within layouts/application (17.8ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 83ms (Views: 81.1ms | ActiveRecord: 1.3ms)
Started GET “/games?page=2” for 127.0.0.1 at 2015-06-25 21:13:44 +0200 Processing by GamesController#index as HTML
Parameters: {"page"=>"2"}
Rendered shared/_gallery_selector.html.erb (0.0ms)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 8[0m
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 9]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 10]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 11]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 12]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 13]]
Rendered games/_index_gallery.html.erb (10.3ms)
Rendered games/index.html.erb within layouts/application (13.0ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 26ms (Views: 24.3ms | ActiveRecord: 1.0ms)
Started GET “/games?page=2” for 127.0.0.1 at 2015-06-25 21:15:20 +0200 Processing by GamesController#index as HTML
Parameters: {"page"=>"2"}
Rendered shared/_gallery_selector.html.erb (0.0ms)
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 8
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 9]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 10]]
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 11]]
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 12]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 13]]
Rendered games/_index_gallery.html.erb (41.5ms)
Rendered games/index.html.erb within layouts/application (44.1ms)
Rendered shared/_header.html.erb (5.1ms)
Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 149ms (Views: 131.5ms | ActiveRecord: 2.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 21:15:20 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 21:15:20 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 21:15:20 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 21:15:20 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 21:15:20 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 21:15:20 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 21:15:20 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 21:15:20 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 21:15:20 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 21:15:20 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 21:15:20 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 21:15:20 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 21:15:20 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 21:15:20 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 21:15:20 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 21:15:20 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 21:15:20 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 21:15:20 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 21:15:20 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 21:15:20 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 21:15:20 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 21:15:20 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 21:15:20 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 21:15:20 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 21:15:20 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 21:23:05 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.9ms) [1m[36mCACHE (0.1ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered widgets/_hot_games.html.erb (2.8ms) [1m[35mGame Load (0.6ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (4.0ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (5.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094730320840 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (27.4ms) Rendered welcome/index.html.erb within layouts/application (48.3ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (4.1ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 67ms (Views: 62.2ms | ActiveRecord: 3.7ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 21:30:45 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (83.5ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE (coin_multiplier = 1)[0m Rendered widgets/_hot_games.html.erb (2.2ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.7ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (15.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (15.2ms) Rendered welcome/index.html.erb within layouts/application (122.4ms) [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (1.8ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 138ms (Views: 129.9ms | ActiveRecord: 3.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:45 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:45 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:45 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:45 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:46 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:46 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:46 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:46 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:46 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:46 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:46 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:46 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:46 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:46 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:46 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:46 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:46 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:46 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:46 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:46 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:46 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:46 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:46 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:46 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:46 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 21:30:52 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.2ms) [1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" WHERE (coin_multiplier >= 1)[0m Rendered widgets/_hot_games.html.erb (2.0ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (27.9ms) Rendered welcome/index.html.erb within layouts/application (40.4ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.3ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 53ms (Views: 48.7ms | ActiveRecord: 3.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:52 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:52 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:52 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:52 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:52 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:52 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:52 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:52 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:52 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:52 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:52 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:52 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:52 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:52 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:52 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:52 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:53 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:53 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:53 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:53 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:53 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:53 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:53 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:53 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:53 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 21:30:54 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.9ms) [1m[36mGame Load (0.4ms)[0m [1mSELECT "games".* FROM "games" WHERE (coin_multiplier >= 1)[0m Rendered widgets/_hot_games.html.erb (3.7ms) [1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (4.0ms) [1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (8.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (32.1ms) Rendered welcome/index.html.erb within layouts/application (56.0ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (3.1ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (1.1ms)
Completed 200 OK in 74ms (Views: 68.5ms | ActiveRecord: 4.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:54 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:54 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:54 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:54 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:54 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:54 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:54 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:54 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:54 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:54 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:54 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:54 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:54 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:54 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:54 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:54 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:54 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:54 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:54 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:54 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:54 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:54 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:54 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:54 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:54 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 21:30:55 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.0ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE (coin_multiplier >= 1)[0m Rendered widgets/_hot_games.html.erb (1.1ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (1.9ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (17.9ms) Rendered welcome/index.html.erb within layouts/application (28.7ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (4.0ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 98ms (Views: 94.4ms | ActiveRecord: 2.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:55 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:55 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:55 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:55 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:55 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:55 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:55 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:55 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:55 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:55 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:55 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:55 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:55 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:55 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 21:30:55 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:55 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:55 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:55 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:55 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:55 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:55 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:55 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:55 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:55 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 21:30:55 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 21:31:02 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.5ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE (coin_multiplier > 1)[0m Rendered widgets/_hot_games.html.erb (1.1ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.4ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (4.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (93.3ms) Rendered welcome/index.html.erb within layouts/application (106.8ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.3ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 119ms (Views: 115.1ms | ActiveRecord: 3.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:02 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:02 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:02 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:02 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:02 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:02 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:02 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:02 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:02 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:02 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:02 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:02 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:02 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:02 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:02 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:02 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:02 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:02 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:02 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:02 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:02 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:02 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:02 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:02 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:02 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 21:31:11 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.0ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.1ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.5ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.4ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (21.5ms) Rendered welcome/index.html.erb within layouts/application (33.0ms) [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (1.8ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 43ms (Views: 39.6ms | ActiveRecord: 3.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:11 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:11 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:11 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:11 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:11 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:11 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:11 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:11 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:11 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:11 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:11 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:11 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:11 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:11 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:11 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:11 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:11 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:11 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:11 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:11 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:11 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:11 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:11 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:11 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:11 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 21:31:46 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.8ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.3ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (3.8ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (4.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (21.2ms) Rendered welcome/index.html.erb within layouts/application (36.3ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.6ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 53ms (Views: 48.9ms | ActiveRecord: 2.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:46 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:46 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:46 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:46 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:46 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:46 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:46 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:46 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:46 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:46 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:46 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:46 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:46 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:46 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:46 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:46 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:46 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:46 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:46 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:46 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:46 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:46 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:46 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:46 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:46 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 21:31:48 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.3ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.5ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.7ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (19.4ms) Rendered welcome/index.html.erb within layouts/application (30.5ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.1ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 43ms (Views: 39.0ms | ActiveRecord: 2.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:48 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:48 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:48 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:48 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:48 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:48 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:48 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:48 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:48 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:48 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:48 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:48 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:48 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:48 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 21:31:48 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:48 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:48 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:48 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:48 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:48 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:48 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:48 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:48 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:48 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 21:31:48 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 21:32:07 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (1.8ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (44.3ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.9ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.6ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4012895947702593254_70094716906300 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.9ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.8ms) Rendered welcome/index.html.erb within layouts/application (74.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.7ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 89ms (Views: 85.3ms | ActiveRecord: 3.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 21:32:07 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 21:32:07 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 21:32:07 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 21:32:07 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 21:32:07 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 21:32:07 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 21:32:07 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 21:32:07 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 21:32:07 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 21:32:07 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 21:32:07 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 21:32:07 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 21:32:07 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 21:32:07 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 21:32:07 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 21:32:07 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 21:32:07 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 21:32:07 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 21:32:07 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 21:32:07 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 21:32:07 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 21:32:07 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 21:32:07 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 21:32:07 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 21:32:07 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 21:48:47 +0200
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (62.6ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (44.8ms) Rendered widgets/_advertisement.html.erb (3.0ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (22.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___816531087550100111_70246736514200 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (2.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (32.8ms) Rendered widgets/_advertisement.html.erb (0.4ms) Rendered welcome/index.html.erb within layouts/application (177.4ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_admin_menu_collapsed.html.erb (0.8ms) Rendered shared/_header.html.erb (9.3ms) Rendered shared/_splash.html.erb (0.8ms) Rendered shared/_footer.html.erb (1.4ms)
Completed 200 OK in 1537ms (Views: 1500.3ms | ActiveRecord: 5.9ms)
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 21:48:48 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 21:48:48 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 21:48:48 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 21:48:48 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 21:48:48 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 21:48:48 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 21:48:48 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 21:48:48 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 21:48:49 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 21:48:49 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 21:48:49 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 21:48:49 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 21:48:49 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 21:48:49 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 21:48:49 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 21:48:49 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 21:48:49 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 21:48:49 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 21:48:49 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 21:48:49 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 21:48:49 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 21:48:49 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 21:48:49 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-25 21:48:49 +0200
Started GET “/” for 127.0.0.1 at 2015-06-25 21:48:50 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.6ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.4ms) Rendered widgets/_advertisement.html.erb (0.2ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.8ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___816531087550100111_70246736514200 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (20.4ms) Rendered widgets/_advertisement.html.erb (0.2ms) Rendered welcome/index.html.erb within layouts/application (32.7ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_admin_menu_collapsed.html.erb (0.1ms) Rendered shared/_header.html.erb (3.1ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 46ms (Views: 42.7ms | ActiveRecord: 2.6ms)
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 21:48:50 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 21:48:50 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 21:48:50 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 21:48:50 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 21:48:50 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 21:48:50 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 21:48:50 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 21:48:50 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 21:48:50 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 21:48:50 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 21:48:50 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 21:48:50 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 21:48:50 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 21:48:50 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 21:48:50 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 21:48:50 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 21:48:50 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 21:48:50 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 21:48:50 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 21:48:50 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 21:48:50 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 21:48:50 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 21:48:50 +0200
Started GET “/assets/default-advertisement.jpg” for 127.0.0.1 at 2015-06-25 21:48:50 +0200
Started GET “/games” for 127.0.0.1 at 2015-06-25 21:48:53 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.4ms) [1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.4ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (34.9ms) Rendered games/index.html.erb within layouts/application (40.1ms) Rendered shared/_admin_menu_collapsed.html.erb (2.5ms) Rendered shared/_header.html.erb (9.0ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 65ms (Views: 60.0ms | ActiveRecord: 2.2ms)
Started GET “/games” for 127.0.0.1 at 2015-06-25 22:01:03 +0200
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.4ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (2.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (116.0ms) Rendered games/index.html.erb within layouts/application (122.2ms) Rendered shared/_header.html.erb (2.0ms) Rendered shared/_footer.html.erb (2.4ms)
Completed 200 OK in 490ms (Views: 451.0ms | ActiveRecord: 6.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 22:01:03 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 22:01:03 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 22:01:03 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 22:01:03 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 22:01:03 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 22:01:03 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 22:01:03 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 22:01:03 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 22:01:03 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 22:01:03 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 22:01:03 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 22:01:03 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 22:01:03 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 22:01:03 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 22:01:03 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 22:01:03 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 22:01:03 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 22:01:03 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 22:01:03 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 22:01:03 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 22:01:03 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 22:01:03 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 22:01:03 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 22:01:03 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 22:01:03 +0200
Started GET “/games” for 127.0.0.1 at 2015-06-25 22:02:12 +0200
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.8ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (2.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (58.5ms) Rendered games/index.html.erb within layouts/application (134.4ms) Rendered shared/_admin_menu_collapsed.html.erb (0.4ms) Rendered shared/_header.html.erb (2.6ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 457ms (Views: 410.3ms | ActiveRecord: 5.0ms)
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 22:02:13 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 22:02:13 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 22:02:13 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 22:02:13 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 22:02:13 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 22:02:13 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 22:02:13 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 22:02:13 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 22:02:13 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 22:02:13 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 22:02:13 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 22:02:13 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 22:02:13 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 22:02:13 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 22:02:13 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 22:02:13 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 22:02:13 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 22:02:13 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 22:02:13 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 22:02:13 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 22:02:13 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 22:02:13 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 22:02:13 +0200
Started GET “/games” for 127.0.0.1 at 2015-06-25 22:05:29 +0200
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.3ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.4ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (1.7ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (55.7ms) Rendered games/index.html.erb within layouts/application (61.4ms) Rendered shared/_header.html.erb (2.1ms) Rendered shared/_footer.html.erb (1.9ms)
Completed 200 OK in 384ms (Views: 351.8ms | ActiveRecord: 4.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:29 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:29 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:29 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:29 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:29 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:29 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:29 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:29 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:29 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:29 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 22:05:29 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 22:05:29 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 22:05:29 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 22:05:29 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:29 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:29 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:29 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:29 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:29 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 22:05:29 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 22:05:30 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 22:05:30 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 22:05:30 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 22:05:30 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 22:05:30 +0200
Started GET “/games” for 127.0.0.1 at 2015-06-25 22:05:31 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (18.2ms) Rendered games/index.html.erb within layouts/application (23.2ms) Rendered shared/_header.html.erb (2.5ms) Rendered shared/_footer.html.erb (2.3ms)
Completed 200 OK in 43ms (Views: 40.1ms | ActiveRecord: 1.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:31 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:31 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:31 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:31 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:31 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:31 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:31 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:31 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:31 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:31 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 22:05:31 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 22:05:31 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 22:05:31 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 22:05:31 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:31 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:31 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:31 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:31 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 22:05:31 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 22:05:31 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 22:05:31 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 22:05:31 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 22:05:31 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 22:05:31 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 22:05:31 +0200
Started GET “/users” for 127.0.0.1 at 2015-06-25 22:05:33 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (15.3ms) Rendered shared/_header.html.erb (2.3ms) Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 112ms (Views: 107.1ms | ActiveRecord: 1.4ms)
Started GET “/users/1” for 127.0.0.1 at 2015-06-25 22:05:34 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"1"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "1"]]
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]]
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 1]]
[1m[35mGameCode Load (0.2ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]]
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 7]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (32.4ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 46ms (Views: 42.7ms | ActiveRecord: 1.5ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 22:05:35 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (10.7ms) [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (3.7ms) [1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (12.5ms) [1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (17.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3702033484853420459_70321433951460 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (44.7ms) Rendered welcome/index.html.erb within layouts/application (97.8ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (4.0ms) Rendered shared/_splash.html.erb (0.9ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 160ms (Views: 153.1ms | ActiveRecord: 5.3ms)
Started GET “/” for 127.0.0.1 at 2015-06-25 22:10:04 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.1ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.7ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (8.8ms) [1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (9.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__3702033484853420459_70321416711680 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (25.1ms) Rendered welcome/index.html.erb within layouts/application (51.9ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (3.7ms) Rendered shared/_splash.html.erb (0.9ms) Rendered shared/_footer.html.erb (1.5ms)
Completed 200 OK in 73ms (Views: 69.3ms | ActiveRecord: 3.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-25 22:10:05 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-25 22:10:05 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-25 22:10:05 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-25 22:10:05 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-25 22:10:05 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-25 22:10:05 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-25 22:10:05 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-25 22:10:05 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-25 22:10:05 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-25 22:10:05 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-25 22:10:05 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-25 22:10:05 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-25 22:10:05 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-25 22:10:05 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-25 22:10:05 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-25 22:10:05 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-25 22:10:05 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-25 22:10:05 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-25 22:10:05 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-25 22:10:05 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-25 22:10:05 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-25 22:10:05 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-25 22:10:05 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-25 22:10:05 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-25 22:10:05 +0200
Started GET “/” for 127.0.0.1 at 2015-06-28 01:51:04 +0200
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (58.8ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.3ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (4.8ms) [1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (19.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___414260498537931710_70358410171740 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (2.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (28.7ms) Rendered welcome/index.html.erb within layouts/application (120.6ms) Rendered shared/_header.html.erb (9.0ms) Rendered shared/_splash.html.erb (0.7ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 332ms (Views: 304.2ms | ActiveRecord: 5.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-28 01:51:04 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-28 01:51:04 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-28 01:51:04 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-28 01:51:04 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-28 01:51:04 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-28 01:51:04 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-28 01:51:04 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-28 01:51:04 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-28 01:51:04 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-28 01:51:04 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-28 01:51:04 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-28 01:51:04 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-28 01:51:04 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-28 01:51:04 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-28 01:51:04 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-28 01:51:04 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-28 01:51:04 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-28 01:51:04 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-28 01:51:04 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-28 01:51:04 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-28 01:51:04 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-28 01:51:05 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-28 01:51:05 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-28 01:51:05 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-28 01:51:05 +0200
Started GET “/assets/fontawesome-webfont.woff?v=4.3.0” for 127.0.0.1 at 2015-06-28 01:51:05 +0200
Started GET “/” for 127.0.0.1 at 2015-06-28 01:54:59 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.2ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.6ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___414260498537931710_70358410171740 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (23.3ms) Rendered welcome/index.html.erb within layouts/application (33.8ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 127ms (Views: 123.3ms | ActiveRecord: 2.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-28 01:54:59 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-28 01:54:59 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-28 01:54:59 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-28 01:54:59 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-28 01:54:59 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-28 01:54:59 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-28 01:54:59 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-28 01:54:59 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-28 01:54:59 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-28 01:54:59 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-28 01:54:59 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-28 01:54:59 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-28 01:54:59 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-28 01:54:59 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-28 01:54:59 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-28 01:54:59 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-28 01:54:59 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-28 01:54:59 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-28 01:54:59 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-28 01:54:59 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-28 01:54:59 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-28 01:54:59 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-28 01:54:59 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-28 01:54:59 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-28 01:54:59 +0200
Started GET “/” for 127.0.0.1 at 2015-06-28 01:55:00 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (5.1ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.0ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (3.0ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___414260498537931710_70358410171740 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (19.5ms) Rendered welcome/index.html.erb within layouts/application (35.5ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 48ms (Views: 45.0ms | ActiveRecord: 2.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:00 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:00 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:00 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:00 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:00 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:00 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:00 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:00 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:00 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:00 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:00 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:00 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:00 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:00 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:00 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:00 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:00 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:00 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:00 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:00 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:00 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:00 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:00 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:00 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:00 +0200
Started GET “/” for 127.0.0.1 at 2015-06-28 01:55:13 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.2ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.6ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___414260498537931710_70358410171740 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (20.6ms) Rendered welcome/index.html.erb within layouts/application (30.5ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 88ms (Views: 84.6ms | ActiveRecord: 2.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:13 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:13 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:13 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:13 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:13 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:13 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:13 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:13 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:13 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:13 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:13 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:13 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:13 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:13 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:13 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:13 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:13 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:13 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:13 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:13 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:13 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:13 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:13 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:13 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:13 +0200
Started GET “/” for 127.0.0.1 at 2015-06-28 01:55:53 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.2ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.6ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.0ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___414260498537931710_70358410171740 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (19.8ms) Rendered welcome/index.html.erb within layouts/application (30.2ms) Rendered shared/_header.html.erb (1.9ms) Rendered shared/_splash.html.erb (0.4ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 44ms (Views: 40.9ms | ActiveRecord: 2.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:53 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:53 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:53 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:53 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:53 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:53 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:53 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:53 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:53 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:53 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:53 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:53 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:53 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:53 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-28 01:55:53 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:53 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:53 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:53 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:53 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:53 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:53 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:53 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:53 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:53 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-28 01:55:53 +0200
Started GET “/” for 127.0.0.1 at 2015-06-28 01:56:13 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.2ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.6ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.1ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___414260498537931710_70358410171740 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (21.0ms) Rendered welcome/index.html.erb within layouts/application (31.7ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 83ms (Views: 79.5ms | ActiveRecord: 2.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:13 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:13 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:13 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:13 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:13 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:13 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:13 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:13 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:13 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:13 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:13 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:13 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:13 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:13 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:13 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-28 01:56:13 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-28 01:56:13 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-28 01:56:13 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-28 01:56:13 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-28 01:56:13 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-28 01:56:13 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-28 01:56:13 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-28 01:56:13 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-28 01:56:13 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-28 01:56:13 +0200
Started POST “/game_codes” for 127.0.0.1 at 2015-06-28 01:56:19 +0200 Processing by GameCodesController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"VyEhOV/Uj9J7pyFeYNsGOoyTBmDyNI7e17WWo1j1ESA=", "game_code"=>{"code"=>"123", "game_id"=>"1"}, "commit"=>"Add Code"}
Completed 401 Unauthorized in 1ms
Started GET “/users/sign_in” for 127.0.0.1 at 2015-06-28 01:56:19 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (1.2ms) Rendered devise/sessions/new.html.erb within layouts/application (9.4ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 25ms (Views: 21.2ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:19 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:19 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:19 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:19 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:19 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:19 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:19 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:19 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:19 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:19 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:19 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:19 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:19 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:19 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-28 01:56:19 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-28 01:56:19 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-28 01:56:19 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-28 01:56:19 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-28 01:56:19 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-28 01:56:19 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-28 01:56:19 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-28 01:56:19 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-28 01:56:19 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-28 01:56:19 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-28 01:56:19 +0200
Started GET “/” for 127.0.0.1 at 2015-06-28 01:56:22 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.5ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (7.9ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.8ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (6.7ms) [1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (9.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___414260498537931710_70358410203940 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.9ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (47.5ms) Rendered welcome/index.html.erb within layouts/application (82.1ms) Rendered shared/_header.html.erb (3.0ms) Rendered shared/_splash.html.erb (0.8ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 105ms (Views: 99.1ms | ActiveRecord: 5.3ms)
Started GET “/games/go-go-hentai-panic-hack-slasher-tenkaichi-3” for 127.0.0.1 at 2015-06-28 01:56:45 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"go-go-hentai-panic-hack-slasher-tenkaichi-3"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'go-go-hentai-panic-hack-slasher-tenkaichi-3' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 13]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 13]]
Rendered games/show.html.erb within layouts/application (7.9ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 25ms (Views: 16.7ms | ActiveRecord: 0.5ms)
Started GET “/” for 127.0.0.1 at 2015-06-28 01:56:52 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.0ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.6ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.0ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___414260498537931710_70358410203940 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (54.9ms) Rendered welcome/index.html.erb within layouts/application (65.0ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 76ms (Views: 73.4ms | ActiveRecord: 1.7ms)
Started GET “/games” for 127.0.0.1 at 2015-06-28 01:56:55 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.3ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (12.3ms) Rendered games/index.html.erb within layouts/application (16.1ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 27ms (Views: 24.9ms | ActiveRecord: 1.0ms)
Started GET “/users” for 127.0.0.1 at 2015-06-28 01:56:56 +0200 Processing by UsersController#index as HTML Completed 401 Unauthorized in 1ms
Started GET “/users/sign_in” for 127.0.0.1 at 2015-06-28 01:56:56 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (0.3ms) Rendered devise/sessions/new.html.erb within layouts/application (2.0ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 12ms (Views: 10.9ms | ActiveRecord: 0.0ms)
Started GET “/games” for 127.0.0.1 at 2015-06-28 01:56:57 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (11.0ms) Rendered games/index.html.erb within layouts/application (13.4ms) Rendered shared/_header.html.erb (2.1ms) Rendered shared/_footer.html.erb (1.1ms)
Completed 200 OK in 62ms (Views: 59.9ms | ActiveRecord: 1.0ms)
Started GET “/” for 127.0.0.1 at 2015-06-28 01:56:58 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.1ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.7ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___414260498537931710_70358410203940 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (15.0ms) Rendered welcome/index.html.erb within layouts/application (26.1ms) Rendered shared/_header.html.erb (2.5ms) Rendered shared/_splash.html.erb (0.4ms) Rendered shared/_footer.html.erb (1.4ms)
Completed 200 OK in 51ms (Views: 48.0ms | ActiveRecord: 1.8ms)
Started GET “/” for 127.0.0.1 at 2015-06-29 07:52:05 +0200
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (79.1ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.8ms) [1m[35mGame Load (0.5ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (11.9ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (25.4ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___2346657272416617528_70217203266860 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (3.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (55.1ms) Rendered welcome/index.html.erb within layouts/application (182.8ms) Rendered shared/_header.html.erb (8.7ms) Rendered shared/_splash.html.erb (1.1ms) Rendered shared/_footer.html.erb (1.7ms)
Completed 200 OK in 397ms (Views: 367.4ms | ActiveRecord: 7.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:05 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:05 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:05 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:05 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:05 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:05 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:05 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:05 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:05 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:05 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:05 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:05 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:05 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:05 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:05 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:05 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:05 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:05 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:05 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:05 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:06 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:06 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:06 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:06 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:06 +0200
Started GET “/assets/fontawesome-webfont.woff?v=4.3.0” for 127.0.0.1 at 2015-06-29 07:52:06 +0200
Started GET “/games” for 127.0.0.1 at 2015-06-29 07:52:12 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.5ms) [1m[36mGame Load (0.5ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.8ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (36.9ms) Rendered games/index.html.erb within layouts/application (42.6ms) Rendered shared/_header.html.erb (2.0ms) Rendered shared/_footer.html.erb (4.0ms)
Completed 200 OK in 69ms (Views: 63.7ms | ActiveRecord: 3.4ms)
Started GET “/games” for 127.0.0.1 at 2015-06-29 07:52:17 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.3ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (12.4ms) Rendered games/index.html.erb within layouts/application (16.2ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 78ms (Views: 76.2ms | ActiveRecord: 1.0ms)
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:17 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:17 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:17 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:17 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:17 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:17 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:17 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:17 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:17 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:17 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:17 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:17 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:17 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:17 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:17 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:17 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:17 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:17 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:17 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:17 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:17 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:17 +0200
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:17 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:17 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:17 +0200
Started GET “/games” for 127.0.0.1 at 2015-06-29 07:52:21 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (18.4ms) Rendered games/index.html.erb within layouts/application (23.4ms) Rendered shared/_header.html.erb (2.0ms) Rendered shared/_footer.html.erb (1.4ms)
Completed 200 OK in 47ms (Views: 44.5ms | ActiveRecord: 1.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:21 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:21 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:21 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:21 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:21 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:21 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:21 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:21 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:21 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:21 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:21 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:21 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:21 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:21 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-29 07:52:21 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:21 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:21 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:21 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:21 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:21 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:21 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:21 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:21 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:21 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-29 07:52:21 +0200
Started GET “/games?page=2” for 127.0.0.1 at 2015-06-29 07:52:24 +0200 Processing by GamesController#index as HTML
Parameters: {"page"=>"2"}
Rendered shared/_gallery_selector.html.erb (0.0ms)
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 8[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 9]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 10]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 11]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 12]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 13]]
Rendered games/_index_gallery.html.erb (7.5ms)
Rendered games/index.html.erb within layouts/application (9.9ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 58ms (Views: 56.2ms | ActiveRecord: 0.6ms)
Started GET “/games?view=listview” for 127.0.0.1 at 2015-06-29 07:52:27 +0200 Processing by GamesController#index as HTML
Parameters: {"view"=>"listview"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35mGameCode Load (1.2ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35mGameCode Load (0.2ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]]
[1m[35mGameCode Load (0.6ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]]
[1m[35mGameCode Load (0.4ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]]
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]]
[1m[35mGameCode Load (0.2ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]]
[1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]]
[1m[35mGameCode Load (0.3ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]]
[1m[35mGameCode Load (0.6ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]]
Rendered games/_index_listview.html.erb (64.9ms)
Rendered games/index.html.erb within layouts/application (69.1ms)
Rendered shared/_header.html.erb (2.6ms)
Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 90ms (Views: 83.1ms | ActiveRecord: 5.6ms)
Started GET “/games?view=gallery” for 127.0.0.1 at 2015-06-29 07:52:28 +0200 Processing by GamesController#index as HTML
Parameters: {"view"=>"gallery"}
Rendered shared/_gallery_selector.html.erb (0.1ms)
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games"
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]]
Rendered games/_index_gallery.html.erb (17.6ms)
Rendered games/index.html.erb within layouts/application (21.5ms)
Rendered shared/_header.html.erb (1.7ms)
Rendered shared/_footer.html.erb (1.3ms)
Completed 200 OK in 42ms (Views: 39.0ms | ActiveRecord: 1.6ms)
Started GET “/users” for 127.0.0.1 at 2015-06-29 07:52:29 +0200 Processing by UsersController#index as HTML Completed 401 Unauthorized in 1ms
Started GET “/users/sign_in” for 127.0.0.1 at 2015-06-29 07:52:30 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (1.8ms) Rendered devise/sessions/new.html.erb within layouts/application (14.0ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 37ms (Views: 29.6ms | ActiveRecord: 0.0ms)
Started GET “/” for 127.0.0.1 at 2015-06-29 07:52:30 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.5ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (1.2ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (4.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___2346657272416617528_70217203547360 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (14.7ms) Rendered welcome/index.html.erb within layouts/application (29.2ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_splash.html.erb (0.7ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 42ms (Views: 39.4ms | ActiveRecord: 1.7ms)
Started GET “/games” for 127.0.0.1 at 2015-06-29 07:52:31 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (21.9ms) Rendered games/index.html.erb within layouts/application (27.4ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (1.3ms)
Completed 200 OK in 52ms (Views: 48.6ms | ActiveRecord: 1.9ms)
Started GET “/users” for 127.0.0.1 at 2015-06-29 07:53:29 +0200 Processing by UsersController#index as HTML Completed 401 Unauthorized in 1ms
Started GET “/users/sign_in” for 127.0.0.1 at 2015-06-29 07:53:29 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (0.8ms) Rendered devise/sessions/new.html.erb within layouts/application (5.2ms) Rendered shared/_header.html.erb (2.0ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 97ms (Views: 95.1ms | ActiveRecord: 0.0ms)
Started GET “/games” for 127.0.0.1 at 2015-06-29 07:53:31 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (22.7ms) Rendered games/index.html.erb within layouts/application (29.6ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 51ms (Views: 48.3ms | ActiveRecord: 2.0ms)
Started GET “/users/sign_in” for 127.0.0.1 at 2015-06-29 07:53:33 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (0.3ms) Rendered devise/sessions/new.html.erb within layouts/application (2.0ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 13ms (Views: 11.7ms | ActiveRecord: 0.0ms)
Started POST “/users/sign_in” for 127.0.0.1 at 2015-06-29 07:53:37 +0200 Processing by Devise::SessionsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"erbFnaTIygb9ZvN3inaBeXRl5eSUlRp6TN1KOB/6gzQ=", "user"=>{"email"=>"peter@son.de", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."email" = 'peter@son.de' ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mSQL (3.9ms)[0m UPDATE "users" SET "remember_created_at" = ?, "updated_at" = ? WHERE "users"."id" = 52 [["remember_created_at", Mon, 29 Jun 2015 05:53:37 UTC +00:00], ["updated_at", Mon, 29 Jun 2015 05:53:37 UTC +00:00]]
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mSQL (0.4ms)[0m [1mUPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 52[0m [["last_sign_in_at", Thu, 25 Jun 2015 18:17:51 UTC +00:00], ["current_sign_in_at", Mon, 29 Jun 2015 05:53:37 UTC +00:00], ["sign_in_count", 5], ["updated_at", Mon, 29 Jun 2015 05:53:37 UTC +00:00]]
[1m[35m (0.5ms)[0m commit transaction
Redirected to localhost:3000/users Completed 302 Found in 94ms (ActiveRecord: 6.1ms)
Started GET “/users” for 127.0.0.1 at 2015-06-29 07:53:37 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (16.3ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 35ms (Views: 32.1ms | ActiveRecord: 1.1ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-06-29 07:53:37 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-06-29 07:53:37 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-06-29 07:53:37 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-06-29 07:53:37 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-06-29 07:53:37 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-06-29 07:53:37 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-06-29 07:53:37 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-06-29 07:53:37 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-06-29 07:53:37 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-06-29 07:53:37 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-06-29 07:53:37 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-06-29 07:53:37 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-06-29 07:53:37 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-06-29 07:53:37 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-06-29 07:53:38 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-06-29 07:53:38 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-06-29 07:53:38 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-06-29 07:53:38 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-06-29 07:53:38 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-06-29 07:53:38 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-06-29 07:53:38 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-06-29 07:53:38 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-06-29 07:53:38 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-06-29 07:53:38 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-06-29 07:53:38 +0200
Started GET “/coins” for 127.0.0.1 at 2015-06-29 07:53:40 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.8ms) Rendered shared/_header.html.erb (2.9ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 22ms (Views: 16.8ms | ActiveRecord: 0.8ms)
Started GET “/users/52” for 127.0.0.1 at 2015-06-29 09:02:51 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"52"}
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "52"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 52]]
[1m[35mGameCode Exists (0.3ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 52]]
Rendered users/show.html.erb within layouts/application (17.1ms)
Rendered shared/_header.html.erb (3.0ms)
Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 45ms (Views: 39.5ms | ActiveRecord: 0.9ms)
Started GET “/users” for 127.0.0.1 at 2015-06-29 09:02:52 +0200 Processing by UsersController#index as HTML Completed 401 Unauthorized in 1ms
Started GET “/users/sign_in” for 127.0.0.1 at 2015-06-29 09:02:52 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (0.3ms) Rendered devise/sessions/new.html.erb within layouts/application (2.2ms) Rendered shared/_header.html.erb (2.9ms) Rendered shared/_footer.html.erb (1.6ms)
Completed 200 OK in 110ms (Views: 108.2ms | ActiveRecord: 0.0ms)
Started GET “/” for 127.0.0.1 at 2015-06-29 09:02:52 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.5ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (6.9ms) [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (1.8ms) [1m[36mGame Load (0.4ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (6.9ms) [1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (11.9ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___2346657272416617528_70217203547360 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (71.6ms) Rendered welcome/index.html.erb within layouts/application (105.6ms) Rendered shared/_header.html.erb (1.7ms) Rendered shared/_splash.html.erb (0.4ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 126ms (Views: 118.9ms | ActiveRecord: 5.9ms)
Started GET “/games” for 127.0.0.1 at 2015-06-29 09:02:53 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (33.8ms) Rendered games/index.html.erb within layouts/application (36.4ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (1.6ms)
Completed 200 OK in 52ms (Views: 50.4ms | ActiveRecord: 1.0ms)
Started GET “/” for 127.0.0.1 at 2015-06-29 09:02:54 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.3ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.4ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (3.8ms) [1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (10.7ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___2346657272416617528_70217203547360 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (49.2ms) Rendered welcome/index.html.erb within layouts/application (72.0ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_splash.html.erb (0.3ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 88ms (Views: 83.3ms | ActiveRecord: 3.4ms)
Started GET “/games” for 127.0.0.1 at 2015-06-29 09:03:01 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.2ms) [1m[36mGame Load (0.7ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.9ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (112.5ms) Rendered games/index.html.erb within layouts/application (119.4ms) Rendered shared/_header.html.erb (2.7ms) Rendered shared/_footer.html.erb (1.6ms)
Completed 200 OK in 192ms (Views: 187.2ms | ActiveRecord: 3.0ms)
Started GET “/” for 127.0.0.1 at 2015-06-29 09:03:10 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.5ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.6ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.5ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (7.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___2346657272416617528_70217203547360 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (45.5ms) Rendered welcome/index.html.erb within layouts/application (62.3ms) Rendered shared/_header.html.erb (1.9ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 74ms (Views: 71.3ms | ActiveRecord: 2.4ms)
Started GET “/” for 127.0.0.1 at 2015-07-01 13:46:32 +0200
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.5ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (84.0ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.4ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (5.2ms) [1m[36mUser Load (1.0ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (17.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__204754747306259489_70206708010960 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (4.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (47.4ms) Rendered welcome/index.html.erb within layouts/application (168.5ms) Rendered shared/_header.html.erb (9.5ms) Rendered shared/_splash.html.erb (0.7ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 422ms (Views: 386.5ms | ActiveRecord: 8.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-01 13:46:32 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-01 13:46:32 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-01 13:46:32 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-01 13:46:32 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-01 13:46:32 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-01 13:46:32 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-01 13:46:32 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-01 13:46:32 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-01 13:46:32 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-01 13:46:33 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-01 13:46:33 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-01 13:46:33 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-01 13:46:33 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-01 13:46:33 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-01 13:46:33 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-01 13:46:33 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-01 13:46:33 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-01 13:46:33 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-01 13:46:33 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-01 13:46:33 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-01 13:46:33 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-01 13:46:33 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-01 13:46:33 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-01 13:46:33 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-01 13:46:33 +0200
Started GET “/assets/fontawesome-webfont.woff?v=4.3.0” for 127.0.0.1 at 2015-07-01 13:46:33 +0200
Started GET “/games” for 127.0.0.1 at 2015-07-01 13:46:35 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.6ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (19.3ms) Rendered games/index.html.erb within layouts/application (27.9ms) Rendered shared/_header.html.erb (3.0ms) Rendered shared/_footer.html.erb (1.9ms)
Completed 200 OK in 63ms (Views: 55.5ms | ActiveRecord: 2.4ms)
Started GET “/users/sign_up” for 127.0.0.1 at 2015-07-01 13:46:35 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (62.0ms) Rendered devise/registrations/new.html.erb within layouts/application (80.9ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 100ms (Views: 95.9ms | ActiveRecord: 0.0ms)
Started GET “/users/sign_up” for 127.0.0.1 at 2015-07-01 13:49:49 +0200
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (1.1ms) Rendered devise/registrations/new.html.erb within layouts/application (88.4ms) Rendered shared/_header.html.erb (2.1ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 270ms (Views: 240.8ms | ActiveRecord: 0.0ms)
Started GET “/users/sign_up” for 127.0.0.1 at 2015-07-01 13:52:27 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.2ms) Rendered devise/registrations/new.html.erb within layouts/application (2.1ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 13ms (Views: 11.7ms | ActiveRecord: 0.0ms)
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-01 13:52:27 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-01 13:52:27 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-01 13:52:27 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-01 13:52:27 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-01 13:52:27 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-01 13:52:28 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-01 13:52:28 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-01 13:52:28 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-01 13:52:28 +0200
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-01 13:52:28 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-01 13:52:28 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-01 13:52:28 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-01 13:52:28 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-01 13:52:28 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-01 13:52:28 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-01 13:52:28 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-01 13:52:28 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-01 13:52:28 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-01 13:52:28 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-01 13:52:28 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-01 13:52:28 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-01 13:52:28 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-01 13:52:28 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-01 13:52:28 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-01 13:52:28 +0200
Started GET “/” for 127.0.0.1 at 2015-07-03 17:49:22 +0200
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (65.7ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.4ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (5.1ms) [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (20.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___505790615023108687_70224694897280 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (2.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (38.7ms) Rendered welcome/index.html.erb within layouts/application (140.8ms) Rendered shared/_header.html.erb (9.6ms) Rendered shared/_splash.html.erb (0.7ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 348ms (Views: 318.9ms | ActiveRecord: 6.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:23 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:23 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:23 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:23 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:23 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:23 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:23 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:23 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:23 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:23 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:23 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:23 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:23 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-03 17:49:23 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:23 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:23 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-03 17:49:23 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-03 17:49:23 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-03 17:49:23 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-03 17:49:23 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-03 17:49:23 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-03 17:49:23 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-03 17:49:23 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-03 17:49:23 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-03 17:49:23 +0200
Started GET “/assets/fontawesome-webfont.woff?v=4.3.0” for 127.0.0.1 at 2015-07-03 17:49:23 +0200
Started POST “/game_codes” for 127.0.0.1 at 2015-07-03 17:49:57 +0200 Processing by GameCodesController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"8yIeSenLOe5/geJ0R/Drb3Kf88r1BU4cHs264HR1nwk=", "game_code"=>{"code"=>"1233242345", "game_id"=>"5"}, "commit"=>"Add Code"}
Completed 401 Unauthorized in 1ms
Started GET “/users/sign_in” for 127.0.0.1 at 2015-07-03 17:49:57 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (2.1ms) Rendered devise/sessions/new.html.erb within layouts/application (15.9ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 33ms (Views: 28.2ms | ActiveRecord: 0.0ms)
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-03 17:49:57 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-03 17:49:57 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-03 17:49:57 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-03 17:49:57 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-03 17:49:57 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-03 17:49:57 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-03 17:49:57 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-03 17:49:57 +0200
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:57 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:57 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:57 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:57 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:57 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:57 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:57 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:57 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:57 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:57 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:57 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:57 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:57 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:57 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-03 17:49:57 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-03 17:49:57 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-03 17:49:57 +0200
Started POST “/users/sign_in” for 127.0.0.1 at 2015-07-03 17:50:07 +0200 Processing by Devise::SessionsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"8yIeSenLOe5/geJ0R/Drb3Kf88r1BU4cHs264HR1nwk=", "user"=>{"email"=>"peter@son.de", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"}
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'peter@son.de' ORDER BY "users"."id" ASC LIMIT 1[0m
Completed 401 Unauthorized in 68ms Processing by Devise::SessionsController#new as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"8yIeSenLOe5/geJ0R/Drb3Kf88r1BU4cHs264HR1nwk=", "user"=>{"email"=>"peter@son.de", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"}
Rendered devise/shared/_links.html.erb (0.4ms)
Rendered devise/sessions/new.html.erb within layouts/application (2.8ms)
Rendered shared/_header.html.erb (1.5ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 87ms (Views: 20.9ms | ActiveRecord: 0.0ms)
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:07 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:07 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:07 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:07 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:07 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:07 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:07 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:07 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:07 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:07 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:07 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:07 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:07 +0200
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:07 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:07 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:07 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:07 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:07 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:07 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:07 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:07 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:07 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:07 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:07 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:07 +0200
Started POST “/users/sign_in” for 127.0.0.1 at 2015-07-03 17:50:10 +0200 Processing by Devise::SessionsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"8yIeSenLOe5/geJ0R/Drb3Kf88r1BU4cHs264HR1nwk=", "user"=>{"email"=>"peter@son.de", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."email" = 'peter@son.de' ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mSQL (0.7ms)[0m UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 52 [["last_sign_in_at", Mon, 29 Jun 2015 05:53:37 UTC +00:00], ["current_sign_in_at", Fri, 03 Jul 2015 15:50:10 UTC +00:00], ["sign_in_count", 6], ["updated_at", Fri, 03 Jul 2015 15:50:10 UTC +00:00]]
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
Redirected to localhost:3000/ Completed 302 Found in 78ms (ActiveRecord: 1.7ms)
Started GET “/” for 127.0.0.1 at 2015-07-03 17:50:10 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.0ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.8ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.7ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (51.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___505790615023108687_70224694897280 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.0ms) Rendered welcome/index.html.erb within layouts/application (79.0ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.9ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 94ms (Views: 90.5ms | ActiveRecord: 2.3ms)
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:10 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:10 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:10 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:10 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:10 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:10 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:10 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:10 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:10 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:10 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:10 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:10 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:10 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:10 +0200
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:10 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:10 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:10 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:10 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:10 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:10 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:10 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:10 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:10 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:10 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:10 +0200
Started POST “/game_codes” for 127.0.0.1 at 2015-07-03 17:50:12 +0200 Processing by GameCodesController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"XyuSkI6uJyOGjDGIwlS6OJS+8BfPkWr5cX6wIv1omLc=", "game_code"=>{"code"=>"234234", "game_id"=>"1"}, "commit"=>"Add Code"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "1"]]
[1m[35m (0.1ms)[0m begin transaction
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35m (0.8ms)[0m rollback transaction
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m
Rendered game_codes/new.html.erb within layouts/application (3.7ms)
Rendered shared/_header.html.erb (3.0ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 70ms (Views: 58.4ms | ActiveRecord: 1.6ms)
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:12 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:12 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:12 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:12 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:12 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:13 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:13 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:13 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:13 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:13 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:13 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:13 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:13 +0200
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:13 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:13 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:13 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:13 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:13 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:13 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:13 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:13 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:13 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:13 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:13 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:13 +0200
Started GET “/games” for 127.0.0.1 at 2015-07-03 17:50:17 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.6ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.9ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.7ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (23.9ms) Rendered games/index.html.erb within layouts/application (30.3ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (1.3ms)
Completed 200 OK in 51ms (Views: 44.0ms | ActiveRecord: 2.9ms)
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:17 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:17 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:17 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:18 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:18 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:18 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:18 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:18 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:18 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:18 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:18 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:18 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:18 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:18 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:18 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:18 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:18 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:18 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-03 17:50:18 +0200
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:18 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:18 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:18 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:18 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:18 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-03 17:50:18 +0200
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-07-03 17:50:33 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[36mGame Load (1.4ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.6ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 1]]
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]]
[1m[36mGameCode Load (1.3ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 1]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 26]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 31]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 38]]
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 46]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 14]]
Rendered games/show.html.erb within layouts/application (112.8ms)
Rendered shared/_header.html.erb (3.3ms)
Rendered shared/_footer.html.erb (1.7ms)
Completed 200 OK in 141ms (Views: 129.2ms | ActiveRecord: 5.0ms)
Started GET “/coins” for 127.0.0.1 at 2015-07-03 17:50:38 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.5ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 15ms (Views: 11.6ms | ActiveRecord: 0.3ms)
Started GET “/games” for 127.0.0.1 at 2015-07-03 17:51:16 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.4ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (21.9ms) Rendered games/index.html.erb within layouts/application (29.4ms) Rendered shared/_header.html.erb (1.6ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 50ms (Views: 44.1ms | ActiveRecord: 1.9ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-07-03 17:51:20 +0200 Processing by GameRequestsController#new as HTML
[1m[35mUser Load (0.9ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb__4579635899672251704_70224672349880 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (2.0ms) Rendered shared/_header.html.erb (2.3ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 94ms (Views: 83.6ms | ActiveRecord: 1.3ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-07-03 17:51:24 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"kokoman", "commit"=>"Check Requests"}
[1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'kokoman'
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mSQL (1.0ms)[0m INSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 03 Jul 2015 15:51:24 UTC +00:00], ["name", "kokoman"], ["updated_at", Fri, 03 Jul 2015 15:51:24 UTC +00:00]]
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.6ms)[0m [1mSELECT 1 AS one FROM "users" WHERE (LOWER("users"."nickname") = LOWER('peter') AND "users"."id" != 52) LIMIT 1[0m
[1m[35mSQL (0.6ms)[0m UPDATE "users" SET "requests_today" = ?, "updated_at" = ? WHERE "users"."id" = 52 [["requests_today", 14], ["updated_at", Fri, 03 Jul 2015 15:51:24 UTC +00:00]]
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
[1m[35mGameRequest Load (0.5ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'kokoman'
Rendered game_requests/_check_requests.html.erb (4.3ms)
Rendered game_requests/check_requests.js.erb (10.5ms)
Completed 200 OK in 48ms (Views: 18.7ms | ActiveRecord: 5.5ms)
Started GET “/games” for 127.0.0.1 at 2015-07-03 17:51:34 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[36mUser Load (0.8ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (23.2ms) Rendered games/index.html.erb within layouts/application (28.5ms) Rendered shared/_header.html.erb (1.9ms) Rendered shared/_footer.html.erb (1.5ms)
Completed 200 OK in 50ms (Views: 45.3ms | ActiveRecord: 2.7ms)
Started DELETE “/users/sign_out” for 127.0.0.1 at 2015-07-03 17:51:36 +0200 Processing by Devise::SessionsController#destroy as HTML
Parameters: {"authenticity_token"=>"XyuSkI6uJyOGjDGIwlS6OJS+8BfPkWr5cX6wIv1omLc="}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mSQL (0.5ms)[0m UPDATE "users" SET "remember_created_at" = ?, "updated_at" = ? WHERE "users"."id" = 52 [["remember_created_at", nil], ["updated_at", Fri, 03 Jul 2015 15:51:36 UTC +00:00]]
[1m[36m (1.6ms)[0m [1mcommit transaction[0m
Redirected to localhost:3000/ Completed 302 Found in 7ms (ActiveRecord: 2.3ms)
Started GET “/” for 127.0.0.1 at 2015-07-03 17:51:36 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.4ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.6ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.8ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___505790615023108687_70224694897280 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (30.8ms) Rendered welcome/index.html.erb within layouts/application (42.8ms) Rendered shared/_header.html.erb (1.6ms) Rendered shared/_splash.html.erb (0.6ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 60ms (Views: 56.3ms | ActiveRecord: 2.0ms)
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-03 17:51:36 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-03 17:51:36 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-03 17:51:36 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-03 17:51:36 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-03 17:51:36 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-03 17:51:36 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-03 17:51:36 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-03 17:51:36 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-03 17:51:36 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-03 17:51:36 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-03 17:51:36 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-03 17:51:36 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-03 17:51:36 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-03 17:51:36 +0200
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-03 17:51:36 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-03 17:51:36 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-03 17:51:36 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-03 17:51:36 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-03 17:51:36 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-03 17:51:36 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-03 17:51:36 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-03 17:51:36 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-03 17:51:36 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-03 17:51:36 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-03 17:51:36 +0200
Started GET “/users/sign_in” for 127.0.0.1 at 2015-07-03 17:51:41 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (0.3ms) Rendered devise/sessions/new.html.erb within layouts/application (2.4ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 14ms (Views: 12.3ms | ActiveRecord: 0.0ms)
Started GET “/games” for 127.0.0.1 at 2015-07-03 17:51:42 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (12.1ms) Rendered games/index.html.erb within layouts/application (14.7ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 26ms (Views: 23.6ms | ActiveRecord: 1.0ms)
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-07-03 17:51:44 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.4ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 1]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 1]]
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 26]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 31]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 38]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 46]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 14]]
Rendered games/show.html.erb within layouts/application (13.4ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 29ms (Views: 24.2ms | ActiveRecord: 1.7ms)
Started GET “/” for 127.0.0.1 at 2015-07-03 17:52:02 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (64.3ms) [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (3.1ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (6.5ms) [1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (9.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___505790615023108687_70224704678820 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (77.7ms) Rendered welcome/index.html.erb within layouts/application (168.4ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_splash.html.erb (0.6ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 182ms (Views: 177.5ms | ActiveRecord: 2.8ms)
Started GET “/users/46” for 127.0.0.1 at 2015-07-03 17:52:17 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"46"}
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "46"]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 46]]
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 46]]
[1m[35mGameCode Load (0.3ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 46]]
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 5]]
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 9]]
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 1]]
Rendered users/show.html.erb within layouts/application (13.4ms)
Rendered shared/_header.html.erb (2.7ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 32ms (Views: 29.3ms | ActiveRecord: 1.3ms)
Started GET “/users/sign_up” for 127.0.0.1 at 2015-07-22 19:02:24 +0200
[1m[36mActiveRecord::SchemaMigration Load (1.0ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (1.0ms) Rendered devise/registrations/new.html.erb within layouts/application (33.2ms) Rendered shared/_header.html.erb (2.5ms) Rendered shared/_footer.html.erb (1.1ms)
Completed 200 OK in 301ms (Views: 271.7ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:25 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:25 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:25 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:25 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:25 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:25 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:25 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:25 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:25 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:25 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:25 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:25 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:25 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:25 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:25 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:25 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:25 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:25 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:25 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:25 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:25 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:25 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:25 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:25 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:25 +0200
Started GET “/assets/fontawesome-webfont.woff2?v=4.3.0” for 127.0.0.1 at 2015-07-22 19:02:25 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:02:27 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.9ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (33.8ms) [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (2.5ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (5.7ms) [1m[36mUser Load (1.1ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (9.6ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (2.9ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (43.3ms) Rendered welcome/index.html.erb within layouts/application (103.5ms) Rendered shared/_header.html.erb (5.1ms) Rendered shared/_splash.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 166ms (Views: 156.2ms | ActiveRecord: 8.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:27 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:27 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:27 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:27 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:27 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:27 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:27 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:27 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:27 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:27 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:27 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:27 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:27 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:27 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:27 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:27 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:27 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:27 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:27 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:27 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:27 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:27 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:27 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:27 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:27 +0200
Started GET “/users” for 127.0.0.1 at 2015-07-22 19:02:32 +0200 Processing by UsersController#index as HTML Completed 401 Unauthorized in 1ms
Started GET “/users/sign_in” for 127.0.0.1 at 2015-07-22 19:02:32 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (2.4ms) Rendered devise/sessions/new.html.erb within layouts/application (8.6ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 26ms (Views: 24.3ms | ActiveRecord: 0.0ms)
Started GET “/users/sign_up” for 127.0.0.1 at 2015-07-22 19:02:34 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.2ms) Rendered devise/registrations/new.html.erb within layouts/application (2.5ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 49ms (Views: 47.8ms | ActiveRecord: 0.0ms)
Started GET “/users/sign_in” for 127.0.0.1 at 2015-07-22 19:02:35 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (0.4ms) Rendered devise/sessions/new.html.erb within layouts/application (7.5ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 71ms (Views: 69.6ms | ActiveRecord: 0.0ms)
Started POST “/users/sign_in” for 127.0.0.1 at 2015-07-22 19:02:39 +0200 Processing by Devise::SessionsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"uer1Nrzz009OH918Hy2Xj94RhPUC9MYxjMAbzsKmAUE=", "user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"}
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'admin@example.com' ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.2ms)[0m begin transaction
[1m[36mSQL (0.6ms)[0m [1mUPDATE "users" SET "remember_created_at" = ?, "updated_at" = ? WHERE "users"."id" = 1[0m [["remember_created_at", Wed, 22 Jul 2015 17:02:39 UTC +00:00], ["updated_at", Wed, 22 Jul 2015 17:02:39 UTC +00:00]]
[1m[35m (0.6ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mSQL (0.4ms)[0m UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Thu, 25 Jun 2015 19:11:35 UTC +00:00], ["current_sign_in_at", Wed, 22 Jul 2015 17:02:39 UTC +00:00], ["sign_in_count", 3], ["updated_at", Wed, 22 Jul 2015 17:02:39 UTC +00:00]]
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
Redirected to localhost:3000/users Completed 302 Found in 88ms (ActiveRecord: 3.0ms)
Started GET “/users” for 127.0.0.1 at 2015-07-22 19:02:39 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (8.1ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 20ms (Views: 16.9ms | ActiveRecord: 1.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:39 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:39 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:39 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:39 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:39 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:39 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:39 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:39 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:39 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:39 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:39 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:39 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:39 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:39 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:02:39 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:39 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:39 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:39 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:39 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:39 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:39 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:39 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:39 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:39 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:02:39 +0200
Started GET “/games” for 127.0.0.1 at 2015-07-22 19:02:42 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.7ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (27.7ms) Rendered games/index.html.erb within layouts/application (36.2ms) Rendered shared/_header.html.erb (2.2ms) Rendered shared/_footer.html.erb (2.1ms)
Completed 200 OK in 167ms (Views: 107.0ms | ActiveRecord: 3.0ms)
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-07-22 19:02:46 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[35mGame Load (1.3ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 1]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35mGameCode Load (0.8ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 1]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 26]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 31]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 38]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 46]]
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 14]]
Rendered games/show.html.erb within layouts/application (32.1ms)
Rendered shared/_header.html.erb (1.8ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 58ms (Views: 47.6ms | ActiveRecord: 3.8ms)
Started GET “/users” for 127.0.0.1 at 2015-07-22 19:02:50 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (9.5ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 22ms (Views: 19.3ms | ActiveRecord: 1.2ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:02:50 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.8ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (1.2ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.7ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (4.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184591076880 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (16.4ms) Rendered welcome/index.html.erb within layouts/application (31.1ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.7ms) Rendered shared/_splash.html.erb (0.5ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 80ms (Views: 77.6ms | ActiveRecord: 2.1ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:04:47 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.5ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.7ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.5ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.9ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (20.2ms) Rendered welcome/index.html.erb within layouts/application (32.6ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.2ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 45ms (Views: 41.5ms | ActiveRecord: 2.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:47 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:47 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:47 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:47 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:47 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:47 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:47 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:47 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:47 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:47 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:47 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:47 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:47 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:47 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:47 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:04:47 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:04:47 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:04:47 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:04:47 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:04:47 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:04:47 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:04:47 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:04:47 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:04:47 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:04:47 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:04:50 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.6ms) [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.9ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.7ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (4.8ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (26.7ms) Rendered welcome/index.html.erb within layouts/application (41.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (3.4ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 56ms (Views: 52.2ms | ActiveRecord: 2.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:50 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:50 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:50 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:50 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:50 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:50 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:50 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:50 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:50 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:50 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:50 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:50 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:50 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:50 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:04:50 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:04:50 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:04:50 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:04:50 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:04:50 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:04:50 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:04:50 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:04:50 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:04:50 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:04:50 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:04:50 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:05:02 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.0ms) [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.9ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.3ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (4.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (20.3ms) Rendered welcome/index.html.erb within layouts/application (34.6ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.5ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 48ms (Views: 44.5ms | ActiveRecord: 2.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:02 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:02 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:02 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:02 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:02 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:02 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:02 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:02 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:02 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:02 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:02 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:02 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:02 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:02 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:02 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:05:02 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:05:02 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:05:02 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:05:02 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:05:02 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:05:02 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:05:02 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:05:02 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:05:02 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:05:02 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:05:11 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.1ms) [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (1.0ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.1ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (4.6ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (23.2ms) Rendered welcome/index.html.erb within layouts/application (38.4ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.3ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 114ms (Views: 110.1ms | ActiveRecord: 2.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:12 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:12 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:12 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:12 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:12 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:12 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:12 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:12 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:12 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:12 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:12 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:12 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:12 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:12 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:05:12 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:05:12 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:05:12 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:05:12 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:05:12 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:05:12 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:05:12 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:05:12 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:05:12 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:05:12 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:05:12 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:06:05 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.4ms) [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.9ms) [1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (4.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (24.6ms) Rendered welcome/index.html.erb within layouts/application (39.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (4.0ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 104ms (Views: 100.3ms | ActiveRecord: 2.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:05 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:05 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:05 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:05 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:05 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:05 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:05 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:05 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:05 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:05 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:05 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:05 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:05 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:05 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:05 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:05 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:05 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:05 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:05 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:05 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:05 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:05 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:05 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:05 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:05 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:06:08 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.6ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.8ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.4ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.8ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (17.6ms) Rendered welcome/index.html.erb within layouts/application (29.9ms) [1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (3.7ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 45ms (Views: 41.0ms | ActiveRecord: 2.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:08 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:08 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:08 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:08 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:08 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:08 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:08 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:08 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:08 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:08 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:08 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:08 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:08 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:08 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:08 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:08 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:08 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:08 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:08 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:08 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:08 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:08 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:08 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:08 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:08 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:06:29 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.7ms) [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (1.0ms) [1m[36mGame Load (0.4ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (4.5ms) [1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (7.4ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (23.5ms) Rendered welcome/index.html.erb within layouts/application (43.1ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.4ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 55ms (Views: 50.8ms | ActiveRecord: 3.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:29 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:29 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:29 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:29 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:29 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:29 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:29 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:29 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:29 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:29 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:29 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:29 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:29 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:29 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:29 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:29 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:29 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:29 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:29 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:29 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:29 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:29 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:29 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:29 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:29 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:06:38 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.4ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.7ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.7ms) Rendered welcome/index.html.erb within layouts/application (30.4ms) [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (1.9ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 45ms (Views: 41.4ms | ActiveRecord: 2.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:38 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:38 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:38 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:38 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:38 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:38 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:38 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:38 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:38 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:38 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:38 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:38 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:38 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:38 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:38 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:38 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:38 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:38 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:38 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:38 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:38 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:38 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:38 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:38 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:38 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:06:45 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.2ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.7ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.7ms) Rendered welcome/index.html.erb within layouts/application (30.3ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (4.8ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 93ms (Views: 89.2ms | ActiveRecord: 2.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:45 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:45 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:45 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:45 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:45 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:45 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:45 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:45 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:45 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:45 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:45 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:45 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:45 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:45 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:06:45 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:45 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:45 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:45 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:45 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:45 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:45 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:45 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:45 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:45 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:06:45 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:10:42 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.6ms) [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.9ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (2.9ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (17.9ms) Rendered welcome/index.html.erb within layouts/application (28.9ms) [1m[35mUser Load (40.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (42.0ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 80ms (Views: 37.7ms | ActiveRecord: 41.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:10:42 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:10:42 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:10:42 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:10:42 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:10:42 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:10:42 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:10:42 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:10:42 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:10:42 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:10:42 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:10:42 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:10:42 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:10:42 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:10:42 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:10:42 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:10:42 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:10:42 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:10:42 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:10:42 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:10:42 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:10:42 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:10:42 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:10:42 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:10:42 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:10:42 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:11:29 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.2ms) [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (1.1ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.1ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (60.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (23.3ms) Rendered welcome/index.html.erb within layouts/application (94.0ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (3.2ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (1.8ms)
Completed 200 OK in 111ms (Views: 107.3ms | ActiveRecord: 2.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:29 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:29 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:29 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:29 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:29 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:29 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:29 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:29 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:29 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:29 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:29 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:29 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:29 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:29 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:29 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:29 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:29 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:29 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:29 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:29 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:29 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:29 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:29 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:29 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:29 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:11:32 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.7ms) [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.7ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.1ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (64.0ms) Rendered welcome/index.html.erb within layouts/application (75.1ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.6ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 87ms (Views: 84.6ms | ActiveRecord: 2.1ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:32 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:32 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:32 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:32 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:32 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:32 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:32 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:32 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:32 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:32 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:32 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:32 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:32 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:32 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:32 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:32 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:32 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:32 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:32 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:32 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:32 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:32 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:32 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:32 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:32 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:11:38 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.9ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.6ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (1.9ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.0ms) Rendered welcome/index.html.erb within layouts/application (28.7ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.0ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 42ms (Views: 38.4ms | ActiveRecord: 2.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:38 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:38 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:38 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:38 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:38 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:38 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:38 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:38 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:38 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:38 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:38 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:38 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:38 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:38 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:38 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:38 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:38 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:38 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:38 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:38 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:38 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:38 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:38 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:38 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:39 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:11:42 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.7ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.7ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.7ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (23.9ms) Rendered welcome/index.html.erb within layouts/application (35.6ms) [1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (9.7ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 59ms (Views: 54.6ms | ActiveRecord: 3.1ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:42 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:42 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:42 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:42 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:42 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:42 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:42 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:42 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:42 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:42 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:42 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:42 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:42 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:42 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:42 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:42 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:42 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:42 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:42 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:42 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:42 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:42 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:42 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:42 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:42 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:11:59 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.1ms) [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (1.0ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.5ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.2ms) Rendered welcome/index.html.erb within layouts/application (30.8ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.9ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 46ms (Views: 42.7ms | ActiveRecord: 2.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:59 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:59 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:59 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:59 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:59 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:59 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:59 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:59 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:59 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:59 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:59 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:59 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:59 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:59 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:11:59 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:59 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:59 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:59 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:59 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:59 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:59 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:59 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:59 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:59 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:11:59 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:12:57 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.8ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.8ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.6ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (4.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (19.7ms) Rendered welcome/index.html.erb within layouts/application (34.5ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.6ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 100ms (Views: 96.6ms | ActiveRecord: 2.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:12:57 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:12:57 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:12:57 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:12:57 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:12:57 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:12:57 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:12:58 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:12:58 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:12:58 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:12:58 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:12:58 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:12:58 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:12:58 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:12:58 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:12:58 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:12:58 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:12:58 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:12:58 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:12:58 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:12:58 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:12:58 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:12:58 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:12:58 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:12:58 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:12:58 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:13:06 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.6ms) [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.9ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (4.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (15.7ms) Rendered welcome/index.html.erb within layouts/application (30.5ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.3ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 91ms (Views: 87.5ms | ActiveRecord: 2.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:06 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:06 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:06 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:06 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:06 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:06 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:06 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:06 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:06 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:06 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:06 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:06 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:06 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:06 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:06 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:06 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:06 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:06 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:06 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:06 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:06 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:06 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:06 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:06 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:06 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:13:21 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.2ms) [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.9ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (4.4ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.8ms) Rendered welcome/index.html.erb within layouts/application (33.5ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.0ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 48ms (Views: 45.0ms | ActiveRecord: 2.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:21 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:21 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:21 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:21 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:21 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:21 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:21 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:21 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:21 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:21 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:21 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:21 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:21 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:21 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:21 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:21 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:21 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:21 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:21 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:21 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:21 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:21 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:21 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:21 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:21 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:13:35 +0200 Processing by WelcomeController#index as HTML
Rendered game_codes/_add_code_form.html.erb (0.6ms) Rendered welcome/index.html.erb within layouts/application (1.2ms)
Completed 500 Internal Server Error in 5ms
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/views/game_codes/_add_code_form.html.erb:9: syntax error, unexpected ')', expecting => …re-input-1', { :size => 12 } );@output_buffer.safe_append=' … ^ /Users/rbarisic/rails_projects/game_codes/app/views/game_codes/_add_code_form.html.erb:23: syntax error, unexpected keyword_end, expecting ')' '; end
^
/Users/rbarisic/rails_projects/game_codes/app/views/game_codes/_add_code_form.html.erb:35: syntax error, unexpected keyword_ensure, expecting ')' /Users/rbarisic/rails_projects/game_codes/app/views/game_codes/_add_code_form.html.erb:37: syntax error, unexpected keyword_end, expecting ')'):
app/views/welcome/index.html.erb:10:in `_app_views_welcome_index_html_erb__424225084623358672_70184568698000' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.1ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:13:50 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.4ms) [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.9ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.5ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (22.0ms) Rendered welcome/index.html.erb within layouts/application (36.3ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.8ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 99ms (Views: 95.5ms | ActiveRecord: 2.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:50 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:50 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:50 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:50 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:50 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:50 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:50 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:50 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:50 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:50 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:50 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:50 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:50 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:50 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:50 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:50 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:50 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:50 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:50 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:50 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:50 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:50 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:50 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:50 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:50 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:13:57 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.5ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.8ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.4ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.6ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (17.8ms) Rendered welcome/index.html.erb within layouts/application (30.9ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.8ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 84ms (Views: 80.2ms | ActiveRecord: 2.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:57 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:57 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:57 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:57 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:57 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:57 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:57 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:57 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:57 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:57 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:57 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:57 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:57 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:57 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:13:57 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:57 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:57 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:57 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:57 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:58 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:58 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:58 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:58 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:58 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:13:58 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:14:06 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (4.0ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.8ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.1ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (50.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (22.5ms) Rendered welcome/index.html.erb within layouts/application (83.5ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (3.3ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 99ms (Views: 95.8ms | ActiveRecord: 2.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:07 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:07 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:07 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:07 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:07 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:07 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:07 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:07 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:07 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:07 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:07 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:07 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:07 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:07 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:07 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:07 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:07 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:07 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:07 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:07 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:07 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:07 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:07 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:07 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:07 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:14:23 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (5.3ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.8ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.6ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (47.7ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (17.2ms) Rendered welcome/index.html.erb within layouts/application (77.2ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (4.9ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 96ms (Views: 93.0ms | ActiveRecord: 2.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:23 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:23 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:23 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:23 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:23 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:23 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:23 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:23 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:23 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:23 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:23 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:23 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:23 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:23 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:23 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:23 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:23 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:23 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:23 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:23 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:23 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:23 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:23 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:23 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:23 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:14:31 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.9ms) [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.9ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (4.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (21.1ms) Rendered welcome/index.html.erb within layouts/application (35.4ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.4ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 49ms (Views: 44.9ms | ActiveRecord: 2.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:31 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:31 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:31 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:31 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:31 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:31 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:31 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:31 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:31 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:31 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:31 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:31 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:31 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:31 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:31 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:31 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:31 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:31 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:31 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:31 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:31 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:31 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:31 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:31 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:31 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:14:59 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.8ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.6ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.4ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.6ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (20.2ms) Rendered welcome/index.html.erb within layouts/application (32.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (3.6ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 51ms (Views: 48.1ms | ActiveRecord: 2.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:59 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:59 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:59 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:59 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:59 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:59 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:59 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:59 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:59 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:59 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:59 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:59 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:59 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:59 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:14:59 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:59 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:59 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:59 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:59 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:59 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:59 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:59 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:59 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:59 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:14:59 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:15:13 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.7ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.6ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.3ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.9ms) Rendered welcome/index.html.erb within layouts/application (30.6ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.0ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 43ms (Views: 39.7ms | ActiveRecord: 2.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:13 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:13 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:13 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:13 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:13 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:13 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:13 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:13 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:13 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:13 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:13 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:13 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:13 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:13 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:13 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:15:13 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:15:13 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:15:13 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:15:13 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:15:13 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:15:13 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:15:13 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:15:13 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:15:13 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:15:13 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:15:14 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.7ms) [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (1.1ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.3ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (5.4ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (17.2ms) Rendered welcome/index.html.erb within layouts/application (32.9ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.5ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 98ms (Views: 94.8ms | ActiveRecord: 2.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:15 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:15 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:15 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:15 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:15 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:15 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:15 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:15 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:15 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:15 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:15 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:15 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:15 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:15 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:15:15 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:15:15 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:15:15 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:15:15 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:15:15 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:15:15 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:15:15 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:15:15 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:15:15 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:15:15 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:15:15 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:18:11 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (74.7ms) [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.9ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (4.6ms) [1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (21.7ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (15.7ms) Rendered welcome/index.html.erb within layouts/application (122.1ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.0ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 141ms (Views: 131.1ms | ActiveRecord: 3.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:18:11 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:18:11 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:18:11 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:18:11 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:18:11 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:18:11 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:18:11 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:18:11 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:18:11 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:18:11 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:18:11 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:18:11 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:18:11 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:18:11 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:18:11 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:18:11 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:18:11 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:18:11 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:18:11 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:18:11 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:18:11 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:18:11 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:18:11 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:18:11 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:18:11 +0200
Started GET “/api/get_code_length” for 127.0.0.1 at 2015-07-22 19:19:38 +0200 Processing by GamesController#get_code_length as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
Completed 500 Internal Server Error in 14ms
ArgumentError (wrong number of arguments (0 for 1)):
app/controllers/games_controller.rb:48:in `get_code_length' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.2ms)
Started GET “/api/get_code_length/2” for 127.0.0.1 at 2015-07-22 19:19:43 +0200
ActionController::RoutingError (No route matches [GET] “/api/get_code_length/2”):
actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (49.2ms)
Started GET “/api/get_code_length” for 127.0.0.1 at 2015-07-22 19:19:59 +0200
NameError (undefined local variable or method `id' for #<ActionDispatch::Routing::Mapper:0x007faa3f3cddb8>):
config/routes.rb:26:in `block in <top (required)>' config/routes.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.9ms)
Started GET “/api/get_code_length/2” for 127.0.0.1 at 2015-07-22 19:20:02 +0200
ActionController::RoutingError (No route matches [GET] “/api/get_code_length/2”):
actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (89.8ms)
Started GET “/api/get_code_length/2” for 127.0.0.1 at 2015-07-22 19:20:35 +0200
NameError (undefined local variable or method `id' for #<ActionDispatch::Routing::Mapper:0x007faa3e7bf940>):
config/routes.rb:26:in `block in <top (required)>' config/routes.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.6ms)
Started GET “/api/get_code_length/2” for 127.0.0.1 at 2015-07-22 19:20:36 +0200
ActionController::RoutingError (No route matches [GET] “/api/get_code_length/2”):
actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (49.7ms)
Started GET “/api/get_code_length/2” for 127.0.0.1 at 2015-07-22 19:20:37 +0200
ActionController::RoutingError (No route matches [GET] “/api/get_code_length/2”):
actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (44.7ms)
Started GET “/api/get_code_length/2” for 127.0.0.1 at 2015-07-22 19:21:52 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"2"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "2"]]
Completed 500 Internal Server Error in 33ms
ActionView::MissingTemplate (Missing template games/get_code_length, application/get_code_length with {:locale=>, :formats=>, :handlers=>[:erb, :builder, :raw, :ruby, :jbuilder]}. Searched in:
* "/Users/rbarisic/rails_projects/game_codes/app/views" * "/Library/Ruby/Gems/2.0.0/gems/devise-3.4.1/app/views"
):
actionpack (4.0.8) lib/action_view/path_set.rb:46:in `find' actionpack (4.0.8) lib/action_view/lookup_context.rb:122:in `find' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:35:in `determine_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:8:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:433:in `_run__825498035343209187__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__3205665108453997390__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.4ms)
Started GET “/api/get_code_length/2” for 127.0.0.1 at 2015-07-22 19:22:08 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"2"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.6ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "2"]]
Completed 500 Internal Server Error in 121ms
ActionView::MissingTemplate (Missing template games/#<Game:0x007faa3c8ac9e0>, application/#<Game:0x007faa3c8ac9e0> with {:locale=>, :formats=>, :handlers=>[:erb, :builder, :raw, :ruby, :jbuilder]}. Searched in:
* "/Users/rbarisic/rails_projects/game_codes/app/views" * "/Library/Ruby/Gems/2.0.0/gems/devise-3.4.1/app/views"
):
app/controllers/games_controller.rb:50:in `get_code_length' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.3ms)
Started GET “/api/get_code_length/2” for 127.0.0.1 at 2015-07-22 19:22:17 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"2"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "2"]]
Completed 500 Internal Server Error in 116ms
ActionView::MissingTemplate (Missing template games/ilangilang, application/ilangilang with {:locale=>, :formats=>, :handlers=>[:erb, :builder, :raw, :ruby, :jbuilder]}. Searched in:
* "/Users/rbarisic/rails_projects/game_codes/app/views" * "/Library/Ruby/Gems/2.0.0/gems/devise-3.4.1/app/views"
):
app/controllers/games_controller.rb:50:in `get_code_length' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.5ms)
Started GET “/api/get_code_length/2” for 127.0.0.1 at 2015-07-22 19:22:26 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"2"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "2"]]
Rendered text template (0.1ms)
Completed 200 OK in 30ms (Views: 3.2ms | ActiveRecord: 0.8ms)
Started GET “/api/get_code_length/2” for 127.0.0.1 at 2015-07-22 19:23:28 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"2"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "2"]]
Completed 406 Not Acceptable in 29ms
ActionController::UnknownFormat (ActionController::UnknownFormat):
app/controllers/games_controller.rb:50:in `get_code_length' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.0ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:23:44 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (4.7ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.9ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.8ms) [1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (9.9ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (19.8ms) Rendered welcome/index.html.erb within layouts/application (41.4ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (3.6ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 60ms (Views: 52.6ms | ActiveRecord: 3.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:44 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:44 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:44 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:44 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:44 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:44 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:44 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:44 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:44 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:44 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:44 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:44 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:44 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:44 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:44 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:23:44 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:23:44 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:23:44 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:23:44 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:23:44 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:23:44 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:23:44 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:23:44 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:23:44 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:23:44 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:23:55 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (18.4ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.0ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (3.7ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (64.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (20.8ms) Rendered welcome/index.html.erb within layouts/application (111.3ms) [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.0ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 130ms (Views: 120.4ms | ActiveRecord: 3.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:55 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:55 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:55 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:55 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:55 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:55 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:55 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:55 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:55 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:55 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:55 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:55 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:55 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:55 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:23:55 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:23:55 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:23:55 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:23:55 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:23:55 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:23:55 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:23:55 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:23:55 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:23:55 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:23:55 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:23:55 +0200
Started GET “/api/get_code_length/2” for 127.0.0.1 at 2015-07-22 19:23:59 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"2"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "2"]]
Redirected to Completed 500 Internal Server Error in 4ms
ActionController::RedirectBackError (No HTTP_REFERER was set in the request to this action, so redirect_to :back could not be called successfully. If this is a test, make sure to specify request.env.):
app/controllers/games_controller.rb:52:in `block (2 levels) in get_code_length' app/controllers/games_controller.rb:50:in `get_code_length' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.4ms)
Started GET “/api/get_code_length/2” for 127.0.0.1 at 2015-07-22 19:24:10 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"2"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "2"]]
Redirected to localhost:3000/ Completed 302 Found in 35ms (ActiveRecord: 0.6ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:24:10 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.6ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.7ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.8ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.8ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (20.3ms) Rendered welcome/index.html.erb within layouts/application (32.9ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.3ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 52ms (Views: 44.1ms | ActiveRecord: 3.1ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:10 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:10 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:10 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:10 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:10 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:10 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:10 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:10 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:10 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:11 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:11 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:11 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:11 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:11 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:11 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:24:11 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:24:11 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:24:11 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:24:11 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:24:11 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:24:11 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:24:11 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:24:11 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:24:11 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:24:11 +0200
Started GET “/api/get_code_length” for 127.0.0.1 at 2015-07-22 19:24:16 +0200
ActionController::RoutingError (No route matches [GET] “/api/get_code_length”):
actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (43.0ms)
Started GET “/api/get_code_length/2” for 127.0.0.1 at 2015-07-22 19:24:19 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"2"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "2"]]
Redirected to localhost:3000/ Completed 302 Found in 5ms (ActiveRecord: 0.5ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:24:19 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.2ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.6ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.0ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (5.8ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (16.2ms) Rendered welcome/index.html.erb within layouts/application (29.5ms) [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (1.7ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 40ms (Views: 37.2ms | ActiveRecord: 1.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:19 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:19 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:19 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:19 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:19 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:19 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:19 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:19 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:19 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:19 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:19 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:19 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:19 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:19 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:24:19 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:24:19 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:24:19 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:24:19 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:24:19 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:24:19 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:24:19 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:24:19 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:24:19 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:24:19 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:24:19 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:28:08 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (14.0ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.0ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.7ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (15.8ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (16.1ms) Rendered welcome/index.html.erb within layouts/application (52.4ms) [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.0ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 70ms (Views: 61.9ms | ActiveRecord: 2.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:08 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:08 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:08 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:08 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:08 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:08 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:08 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:08 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:08 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:08 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:08 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:08 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:08 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:08 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:08 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:08 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:08 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:08 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:08 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:08 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:08 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:08 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:08 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:08 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:08 +0200
Started POST “/game_codes” for 127.0.0.1 at 2015-07-22 19:28:10 +0200 Processing by GameCodesController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"SbZ33YYrDsIwriOyxdSKgq9uwrZZ2jiC0bhOBbcnVoo=", "game_code"=>{"code"=>"", "game_id"=>"1"}, "commit"=>"Add Code"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "1"]]
[1m[35m (0.1ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35m (0.1ms)[0m rollback transaction
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m
Rendered game_codes/new.html.erb within layouts/application (5.6ms)
Rendered shared/_header.html.erb (3.3ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 31ms (Views: 20.8ms | ActiveRecord: 0.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:10 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:10 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:10 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:10 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:10 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:10 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:10 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:10 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:10 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:10 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:10 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:10 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:10 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:10 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:10 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:10 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:10 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:10 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:10 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:10 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:10 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:10 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:10 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:10 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:10 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:28:21 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.5ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.7ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (8.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (25.2ms) Rendered welcome/index.html.erb within layouts/application (42.9ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (3.1ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 106ms (Views: 102.4ms | ActiveRecord: 2.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:22 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:22 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:22 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:22 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:22 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:22 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:22 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:22 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:22 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:22 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:22 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:22 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:22 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:22 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:22 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:22 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:22 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:22 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:22 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:22 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:22 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:22 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:22 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:22 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:22 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:28:31 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (6.0ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.9ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (3.6ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (4.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (65.9ms) Rendered welcome/index.html.erb within layouts/application (83.5ms) [1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (4.2ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 99ms (Views: 95.6ms | ActiveRecord: 2.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:31 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:31 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:31 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:31 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:31 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:31 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:31 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:31 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:31 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:31 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:31 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:31 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:31 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:31 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:31 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:31 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:31 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:31 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:31 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:31 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:31 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:31 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:31 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:31 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:31 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:28:38 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (4.2ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.9ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (3.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.6ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (12.8ms) Rendered welcome/index.html.erb within layouts/application (28.2ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.2ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 41ms (Views: 37.5ms | ActiveRecord: 2.1ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:38 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:38 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:38 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:38 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:38 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:38 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:38 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:38 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:38 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:38 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:38 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:38 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:38 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:38 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:38 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:38 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:38 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:38 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:38 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:38 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:38 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:38 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:38 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:38 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:38 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:28:41 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.4ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.1ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.9ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.7ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (23.8ms) Rendered welcome/index.html.erb within layouts/application (37.8ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (3.3ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 54ms (Views: 49.7ms | ActiveRecord: 3.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:41 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:41 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:41 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:41 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:41 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:41 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:41 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:41 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:41 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:41 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:41 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:41 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:41 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:41 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:28:41 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:42 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:42 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:42 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:42 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:42 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:42 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:42 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:42 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:42 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:28:42 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:28:49 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.2ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.6ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (3.4ms) [1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (5.8ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (19.1ms) Rendered welcome/index.html.erb within layouts/application (34.1ms) [1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (4.7ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 51ms (Views: 48.1ms | ActiveRecord: 2.3ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:29:08 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.3ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.9ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.4ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (16.6ms) Rendered welcome/index.html.erb within layouts/application (29.6ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.3ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 42ms (Views: 38.8ms | ActiveRecord: 2.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:08 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:08 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:08 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:08 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:08 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:08 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:08 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:08 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:08 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:08 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:08 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:08 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:08 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:08 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:08 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:08 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:08 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:08 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:08 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:08 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:08 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:08 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:08 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:08 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:08 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:29:08 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.6ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.7ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.4ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.6ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (28.4ms) Rendered welcome/index.html.erb within layouts/application (40.7ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (5.4ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 62ms (Views: 57.5ms | ActiveRecord: 3.3ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:29:30 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.0ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.7ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.9ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.7ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (17.0ms) Rendered welcome/index.html.erb within layouts/application (30.3ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.1ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 42ms (Views: 39.1ms | ActiveRecord: 2.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:30 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:30 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:30 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:30 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:30 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:30 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:30 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:30 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:30 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:30 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:30 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:30 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:30 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:30 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:30 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:30 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:30 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:30 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:30 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:30 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:30 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:30 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:30 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:30 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:30 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:29:31 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.6ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (5.8ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.6ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (4.5ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.9ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (26.2ms) Rendered welcome/index.html.erb within layouts/application (47.1ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (5.8ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 142ms (Views: 137.3ms | ActiveRecord: 3.4ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:29:43 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (8.8ms) [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.2ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (4.2ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.8ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.5ms) Rendered welcome/index.html.erb within layouts/application (40.8ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.2ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 55ms (Views: 50.5ms | ActiveRecord: 2.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:43 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:43 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:43 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:43 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:43 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:43 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:43 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:43 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:43 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:43 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:43 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:43 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:43 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:43 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:29:43 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:43 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:43 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:43 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:43 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:43 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:43 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:43 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:43 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:43 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:29:43 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:29:43 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.6ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.9ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (5.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (4.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (21.6ms) Rendered welcome/index.html.erb within layouts/application (37.5ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (3.2ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 52ms (Views: 47.7ms | ActiveRecord: 3.1ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:30:10 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.8ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.0ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.9ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (9.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (23.1ms) Rendered welcome/index.html.erb within layouts/application (42.9ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.7ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 56ms (Views: 52.5ms | ActiveRecord: 2.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:30:10 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:30:10 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:30:10 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:30:10 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:30:10 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:30:10 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:30:10 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:30:10 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:30:10 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:30:10 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:30:10 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:30:10 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:30:10 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:30:10 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:30:10 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:30:10 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:30:10 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:30:10 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:30:10 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:30:10 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:30:10 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:30:10 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:30:10 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:30:10 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:30:10 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:30:10 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.9ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.6ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.2ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.6ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (39.2ms) Rendered welcome/index.html.erb within layouts/application (51.3ms) [1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (4.6ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 70ms (Views: 64.5ms | ActiveRecord: 4.1ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:31:59 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (4.0ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.9ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.7ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (4.4ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (23.1ms) Rendered welcome/index.html.erb within layouts/application (38.5ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (3.0ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 106ms (Views: 102.2ms | ActiveRecord: 2.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:31:59 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:31:59 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:31:59 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:31:59 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:31:59 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:31:59 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:31:59 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:31:59 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:31:59 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:31:59 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:31:59 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:31:59 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:31:59 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:31:59 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:31:59 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:31:59 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:31:59 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:31:59 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:31:59 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:31:59 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:31:59 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:31:59 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:31:59 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:31:59 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:31:59 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:31:59 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (4.5ms) [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.5ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.2ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (80.0ms) Rendered welcome/index.html.erb within layouts/application (95.8ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (3.4ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 115ms (Views: 111.1ms | ActiveRecord: 2.9ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:32:18 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.6ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.8ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.5ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.6ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (20.1ms) Rendered welcome/index.html.erb within layouts/application (33.7ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.4ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 46ms (Views: 43.1ms | ActiveRecord: 2.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:18 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:18 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:18 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:18 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:18 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:18 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:18 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:18 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:18 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:18 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:18 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:18 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:18 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:18 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:18 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:32:18 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:32:18 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:32:18 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:32:18 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:32:18 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:32:18 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:32:18 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:32:18 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:32:18 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:32:18 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:32:18 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.6ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (6.1ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.8ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (6.1ms) [1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (8.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (36.1ms) Rendered welcome/index.html.erb within layouts/application (62.1ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.6ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 88ms (Views: 81.1ms | ActiveRecord: 4.5ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:32:37 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.3ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.7ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (3.2ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (4.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.5ms) Rendered welcome/index.html.erb within layouts/application (33.3ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.3ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 46ms (Views: 42.9ms | ActiveRecord: 2.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:37 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:37 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:37 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:37 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:37 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:37 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:38 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:38 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:38 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:38 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:38 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:38 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:38 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:38 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:32:38 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:32:38 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:32:38 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:32:38 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:32:38 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:32:38 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:32:38 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:32:38 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:32:38 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:32:38 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:32:38 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:32:38 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.2ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.8ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.8ms) [1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (6.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (17.9ms) Rendered welcome/index.html.erb within layouts/application (34.1ms) [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.0ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 50ms (Views: 46.0ms | ActiveRecord: 2.8ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:34:03 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.5ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.0ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.6ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.4ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.1ms) Rendered welcome/index.html.erb within layouts/application (31.6ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.3ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 45ms (Views: 41.4ms | ActiveRecord: 2.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:03 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:03 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:03 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:03 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:03 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:03 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:03 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:03 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:03 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:03 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:03 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:03 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:03 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:03 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:03 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:03 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:03 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:03 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:03 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:03 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:03 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:03 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:03 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:03 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:03 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:34:04 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (4.2ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.2ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (3.0ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (4.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (17.5ms) Rendered welcome/index.html.erb within layouts/application (33.4ms) [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (1.9ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 95ms (Views: 91.2ms | ActiveRecord: 2.5ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:34:31 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (61.9ms) [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.4ms) [1m[35mGame Load (0.6ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (4.9ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (67.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (29.0ms) Rendered welcome/index.html.erb within layouts/application (167.8ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.5ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 191ms (Views: 178.1ms | ActiveRecord: 4.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:32 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:32 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:32 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:32 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:32 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:32 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:32 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:32 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:32 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:32 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:32 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:32 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:32 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:32 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:32 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:32 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:32 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:32 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:32 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:32 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:32 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:32 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:32 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:32 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:32 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:34:32 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.4ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.7ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.4ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (4.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (16.9ms) Rendered welcome/index.html.erb within layouts/application (29.8ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (3.4ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 44ms (Views: 40.8ms | ActiveRecord: 2.2ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:34:37 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.9ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (20.5ms) [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.3ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (4.0ms) [1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (21.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (27.8ms) Rendered welcome/index.html.erb within layouts/application (78.9ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.8ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 104ms (Views: 91.0ms | ActiveRecord: 5.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:37 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:37 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:37 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:37 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:37 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:37 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:37 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:37 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:37 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:37 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:37 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:37 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:37 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:37 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:34:37 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:37 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:37 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:37 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:37 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:37 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:37 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:37 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:37 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:37 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:34:37 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:34:37 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.6ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.6ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (4.7ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (4.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (23.3ms) Rendered welcome/index.html.erb within layouts/application (40.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.2ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 59ms (Views: 55.0ms | ActiveRecord: 2.8ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:35:32 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (19.9ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.0ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (52.7ms) [1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (18.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (20.4ms) Rendered welcome/index.html.erb within layouts/application (117.2ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.3ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 137ms (Views: 125.7ms | ActiveRecord: 3.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:32 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:32 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:32 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:32 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:32 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:32 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:32 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:32 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:32 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:32 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:32 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:32 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:32 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:32 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:32 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:32 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:32 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:32 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:32 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:32 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:32 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:32 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:32 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:32 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:32 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:35:33 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.5ms) [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (2.6ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.9ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.9ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (23.8ms) Rendered welcome/index.html.erb within layouts/application (43.3ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (3.2ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 60ms (Views: 56.1ms | ActiveRecord: 2.6ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:35:37 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (45.0ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.3ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.6ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.7ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (25.0ms) Rendered welcome/index.html.erb within layouts/application (80.9ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (3.1ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 99ms (Views: 95.0ms | ActiveRecord: 2.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:37 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:37 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:37 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:37 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:37 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:37 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:37 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:37 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:37 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:37 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:37 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:37 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:37 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:37 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:37 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:37 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:37 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:37 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:37 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:37 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:37 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:37 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:37 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:37 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:37 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:35:38 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.2ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.6ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.5ms) [1m[36mUser Load (0.8ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (10.6ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (34.4ms) Rendered welcome/index.html.erb within layouts/application (56.0ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (5.3ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 76ms (Views: 71.5ms | ActiveRecord: 3.6ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:35:46 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (4.0ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.0ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (3.5ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (5.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (20.5ms) Rendered welcome/index.html.erb within layouts/application (37.8ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (4.8ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 107ms (Views: 103.2ms | ActiveRecord: 2.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:46 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:46 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:46 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:46 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:46 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:46 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:46 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:46 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:46 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:46 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:46 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:46 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:46 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:46 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:46 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:46 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:46 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:46 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:46 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:46 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:46 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:46 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:46 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:46 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:46 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:35:47 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.2ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.0ms) [1m[35mGame Load (0.5ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (6.7ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.6ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (51.1ms) Rendered welcome/index.html.erb within layouts/application (68.7ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.5ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 82ms (Views: 78.2ms | ActiveRecord: 2.7ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:35:57 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (4.2ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.0ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.7ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (4.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (21.2ms) Rendered welcome/index.html.erb within layouts/application (36.3ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (3.5ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 51ms (Views: 47.6ms | ActiveRecord: 2.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:57 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:57 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:57 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:57 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:57 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:57 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:57 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:57 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:57 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:57 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:57 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:57 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:57 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:57 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:35:57 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:57 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:57 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:57 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:57 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:57 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:57 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:57 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:57 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:57 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:35:57 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:35:58 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.5ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.6ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (3.3ms) [1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (4.7ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (12.5ms) Rendered welcome/index.html.erb within layouts/application (27.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.3ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 41ms (Views: 37.4ms | ActiveRecord: 2.1ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:36:15 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (41.9ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.0ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (3.0ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (7.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (19.1ms) Rendered welcome/index.html.erb within layouts/application (75.2ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (3.0ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 88ms (Views: 85.4ms | ActiveRecord: 2.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:15 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:15 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:15 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:15 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:15 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:15 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:15 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:15 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:15 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:15 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:15 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:15 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:15 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:15 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:15 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:15 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:15 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:15 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:15 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:15 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:15 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:15 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:15 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:15 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:15 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:36:16 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (4.9ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.2ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (5.9ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (25.0ms) Rendered welcome/index.html.erb within layouts/application (45.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (3.4ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 65ms (Views: 60.0ms | ActiveRecord: 3.3ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:36:33 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.6ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.8ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.5ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (4.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (17.6ms) Rendered welcome/index.html.erb within layouts/application (31.7ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.1ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 44ms (Views: 41.3ms | ActiveRecord: 2.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:33 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:33 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:33 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:33 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:33 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:33 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:33 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:33 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:33 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:33 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:33 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:33 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:33 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:33 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:33 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:33 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:33 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:33 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:33 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:33 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:33 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:33 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:33 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:33 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:33 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:36:34 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.9ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.7ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (6.2ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (9.6ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (33.9ms) Rendered welcome/index.html.erb within layouts/application (139.6ms) [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.0ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 158ms (Views: 153.7ms | ActiveRecord: 3.5ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:36:43 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.1ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.8ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (3.4ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (4.6ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (3.8ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (23.7ms) Rendered welcome/index.html.erb within layouts/application (38.6ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.0ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 50ms (Views: 43.4ms | ActiveRecord: 6.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:43 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:43 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:43 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:43 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:43 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:43 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:43 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:43 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:43 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:43 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:43 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:43 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:43 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:43 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:36:43 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:43 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:43 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:43 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:43 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:43 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:43 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:43 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:43 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:43 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:36:43 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:36:44 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (5.4ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.0ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.7ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.4ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (20.5ms) Rendered welcome/index.html.erb within layouts/application (35.8ms) [1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (6.5ms) Rendered shared/_splash.html.erb (0.3ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 133ms (Views: 129.3ms | ActiveRecord: 3.1ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:37:28 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (4.0ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.0ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.8ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.7ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.9ms) Rendered welcome/index.html.erb within layouts/application (33.5ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.4ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 47ms (Views: 43.2ms | ActiveRecord: 2.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:29 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:29 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:29 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:29 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:29 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:29 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:29 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:29 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:29 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:29 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:29 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:29 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:29 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:29 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:29 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:29 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:29 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:29 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:29 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:29 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:29 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:29 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:29 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:29 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:29 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:37:29 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (7.1ms) [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (2.1ms) [1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (6.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (8.9ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.4ms) Rendered welcome/index.html.erb within layouts/application (48.8ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.2ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 62ms (Views: 58.5ms | ActiveRecord: 2.9ms)
Started GET “/api/get_code_length/1” for 127.0.0.1 at 2015-07-22 19:37:30 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.8ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "1"]]
Rendered text template (0.0ms)
Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 1.5ms)
Started GET “/api/get_code_length/1” for 127.0.0.1 at 2015-07-22 19:37:31 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "1"]]
Rendered text template (0.0ms)
Completed 200 OK in 5ms (Views: 1.2ms | ActiveRecord: 0.4ms)
Started GET “/api/get_code_length/1” for 127.0.0.1 at 2015-07-22 19:37:33 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "1"]]
Rendered text template (0.1ms)
Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.3ms)
Started GET “/api/get_code_length/1” for 127.0.0.1 at 2015-07-22 19:37:35 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "1"]]
Rendered text template (0.0ms)
Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 0.3ms)
Started GET “/api/get_code_length/1” for 127.0.0.1 at 2015-07-22 19:37:36 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "1"]]
Rendered text template (0.0ms)
Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.5ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:37:51 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (19.9ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.5ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (4.4ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (52.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (26.3ms) Rendered welcome/index.html.erb within layouts/application (108.0ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (3.2ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 176ms (Views: 167.1ms | ActiveRecord: 4.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:51 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:51 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:51 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:51 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:51 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:51 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:51 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:51 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:51 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:51 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:51 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:51 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:51 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:51 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:51 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:51 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:51 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:51 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:51 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:51 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:51 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:51 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:51 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:51 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:51 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:37:51 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.9ms) [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (2.4ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.4ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (5.7ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (71.7ms) Rendered welcome/index.html.erb within layouts/application (90.4ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.5ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 105ms (Views: 101.6ms | ActiveRecord: 3.0ms)
Started GET “/api/get_code_length/1” for 127.0.0.1 at 2015-07-22 19:37:52 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "1"]]
Completed 500 Internal Server Error in 9ms
NameError (undefined local variable or method `game' for #<GamesController:0x007faa3f4b81d8>):
app/controllers/games_controller.rb:50:in `get_code_length' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.0ms)
Started GET “/api/get_code_length/1” for 127.0.0.1 at 2015-07-22 19:37:53 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "1"]]
Completed 500 Internal Server Error in 8ms
NameError (undefined local variable or method `game' for #<GamesController:0x007faa408e0200>):
app/controllers/games_controller.rb:50:in `get_code_length' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (71.1ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:37:59 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (18.0ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.0ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (3.4ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (13.9ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (51.1ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.6ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (71.7ms) Rendered welcome/index.html.erb within layouts/application (111.6ms) [1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (4.5ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 135ms (Views: 72.5ms | ActiveRecord: 55.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:59 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:59 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:59 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:59 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:59 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:59 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:59 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:59 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:59 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:59 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:59 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:59 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:59 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:59 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:37:59 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:59 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:59 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:59 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:59 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:59 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:59 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:59 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:59 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:59 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:37:59 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:37:59 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.3ms) [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (3.5ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (8.4ms) [1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (13.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (39.2ms) Rendered welcome/index.html.erb within layouts/application (73.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (3.5ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 91ms (Views: 85.8ms | ActiveRecord: 4.6ms)
Started GET “/api/get_code_length/1” for 127.0.0.1 at 2015-07-22 19:38:01 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "1"]]
Rendered text template (0.0ms)
Completed 200 OK in 4ms (Views: 0.7ms | ActiveRecord: 0.6ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:38:43 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.9ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.0ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.9ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.8ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (22.1ms) Rendered welcome/index.html.erb within layouts/application (36.9ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (4.5ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 104ms (Views: 100.5ms | ActiveRecord: 2.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:43 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:43 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:43 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:43 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:43 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:43 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:43 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:43 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:43 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:43 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:43 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:43 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:43 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:43 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:43 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:38:43 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:38:43 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:38:43 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:38:43 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:38:43 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:38:43 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:38:43 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:38:43 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:38:43 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:38:43 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:38:43 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.1ms) [1m[36m (0.8ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (2.7ms) [1m[35mGame Load (0.6ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (3.6ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (93.8ms) Rendered welcome/index.html.erb within layouts/application (108.8ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.9ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 126ms (Views: 120.5ms | ActiveRecord: 4.2ms)
Started GET “/api/get_code_length/1” for 127.0.0.1 at 2015-07-22 19:38:44 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "1"]]
Rendered text template (0.0ms)
Completed 200 OK in 7ms (Views: 1.2ms | ActiveRecord: 0.8ms)
Started GET “/api/get_code_length/1” for 127.0.0.1 at 2015-07-22 19:38:45 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "1"]]
Rendered text template (0.0ms)
Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.4ms)
Started GET “/api/get_code_length/1” for 127.0.0.1 at 2015-07-22 19:38:46 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "1"]]
Rendered text template (0.0ms)
Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 0.3ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:38:49 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.9ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.0ms) [1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (4.4ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (5.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (22.9ms) Rendered welcome/index.html.erb within layouts/application (41.3ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.7ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 113ms (Views: 109.6ms | ActiveRecord: 2.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:49 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:49 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:49 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:49 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:49 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:49 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:49 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:49 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:49 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:49 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:49 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:49 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:49 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:49 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:38:49 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:38:49 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:38:49 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:38:49 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:38:49 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:38:49 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:38:49 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:38:49 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:38:49 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:38:49 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:38:49 +0200
Started GET “/” for 127.0.0.1 at 2015-07-22 19:38:49 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.2ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.9ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (4.2ms) [1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (13.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.7ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (118.9ms) Rendered welcome/index.html.erb within layouts/application (146.0ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.3ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 164ms (Views: 156.6ms | ActiveRecord: 6.1ms)
Started GET “/api/get_code_length/1” for 127.0.0.1 at 2015-07-22 19:38:50 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "1"]]
Rendered text template (0.0ms)
Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.4ms)
Started GET “/api/get_code_length/1” for 127.0.0.1 at 2015-07-22 19:38:52 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "1"]]
Rendered text template (0.0ms)
Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.3ms)
Started GET “/api/get_code_length/1” for 127.0.0.1 at 2015-07-22 19:38:54 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "1"]]
Rendered text template (0.0ms)
Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.4ms)
Started GET “/api/get_code_length/1” for 127.0.0.1 at 2015-07-22 19:38:57 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "1"]]
Rendered text template (0.0ms)
Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 0.4ms)
Started GET “/api/get_code_length/1” for 127.0.0.1 at 2015-07-22 19:39:11 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "1"]]
Rendered text template (0.0ms)
Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 0.4ms)
Started GET “/api/get_code_length/1” for 127.0.0.1 at 2015-07-22 19:39:12 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "1"]]
Rendered text template (0.0ms)
Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 0.3ms)
Started GET “/api/get_code_length/1” for 127.0.0.1 at 2015-07-22 19:40:22 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "1"]]
Rendered text template (0.1ms)
Completed 200 OK in 4ms (Views: 0.7ms | ActiveRecord: 0.3ms)
Started GET “/” for 127.0.0.1 at 2015-07-22 19:41:39 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (4.1ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.0ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (3.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (4.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (21.5ms) Rendered welcome/index.html.erb within layouts/application (37.3ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (3.4ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 52ms (Views: 48.6ms | ActiveRecord: 2.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-22 19:41:39 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-22 19:41:39 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-22 19:41:39 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-22 19:41:39 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-22 19:41:39 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-22 19:41:39 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-22 19:41:39 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-22 19:41:39 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-22 19:41:39 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-22 19:41:39 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-22 19:41:39 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-22 19:41:39 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-22 19:41:39 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-22 19:41:39 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-22 19:41:39 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-22 19:41:39 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-22 19:41:39 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-22 19:41:39 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-22 19:41:39 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-22 19:41:39 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-22 19:41:39 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-22 19:41:39 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-22 19:41:39 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-22 19:41:39 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-22 19:41:39 +0200
Started GET “/api/get_code_length/1” for 127.0.0.1 at 2015-07-22 19:41:54 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "1"]]
Rendered text template (0.0ms)
Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 0.4ms)
Started GET “/api/get_code_length/1” for 127.0.0.1 at 2015-07-22 19:41:57 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "1"]]
Rendered text template (0.0ms)
Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 0.4ms)
Started GET “/api/get_code_length/1” for 127.0.0.1 at 2015-07-22 19:42:35 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "1"]]
Rendered text template (0.0ms)
Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.3ms)
Started GET “/api/get_code_length/1” for 127.0.0.1 at 2015-07-22 19:46:45 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "1"]]
Rendered text template (0.0ms)
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.3ms)
Started GET “/” for 127.0.0.1 at 2015-07-23 00:35:09 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.5ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (22.4ms) [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (3.2ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (3.7ms) [1m[36mUser Load (0.9ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (71.4ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184603222540 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.9ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (23.6ms) Rendered welcome/index.html.erb within layouts/application (131.0ms) Rendered shared/_header.html.erb (2.1ms) Rendered shared/_splash.html.erb (0.3ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 154ms (Views: 142.6ms | ActiveRecord: 5.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-23 00:35:10 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-23 00:35:10 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-23 00:35:10 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-23 00:35:10 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-23 00:35:10 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-23 00:35:10 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-23 00:35:10 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-23 00:35:10 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-23 00:35:10 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-23 00:35:10 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-23 00:35:10 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-23 00:35:10 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-23 00:35:10 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-23 00:35:10 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-23 00:35:10 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-23 00:35:10 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-23 00:35:10 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-23 00:35:10 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-23 00:35:10 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-23 00:35:10 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-23 00:35:10 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-23 00:35:10 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-23 00:35:10 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-23 00:35:10 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-23 00:35:10 +0200
Started GET “/assets/fontawesome-webfont.woff2?v=4.3.0” for 127.0.0.1 at 2015-07-23 00:35:10 +0200
Started GET “/games” for 127.0.0.1 at 2015-07-23 00:35:19 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (1.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (34.8ms) Rendered games/index.html.erb within layouts/application (41.0ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (1.3ms)
Completed 200 OK in 63ms (Views: 56.0ms | ActiveRecord: 3.2ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-07-23 00:35:24 +0200 Processing by GameRequestsController#new as HTML Completed 401 Unauthorized in 1ms
Started GET “/users/sign_in” for 127.0.0.1 at 2015-07-23 00:35:24 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (0.8ms) Rendered devise/sessions/new.html.erb within layouts/application (3.5ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 17ms (Views: 15.1ms | ActiveRecord: 0.0ms)
Started GET “/users/sign_up” for 127.0.0.1 at 2015-07-23 00:35:27 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.3ms) Rendered devise/registrations/new.html.erb within layouts/application (2.2ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 19ms (Views: 16.8ms | ActiveRecord: 0.0ms)
Started GET “/users” for 127.0.0.1 at 2015-07-23 00:35:28 +0200 Processing by UsersController#index as HTML Completed 401 Unauthorized in 1ms
Started GET “/users/sign_in” for 127.0.0.1 at 2015-07-23 00:35:28 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (0.4ms) Rendered devise/sessions/new.html.erb within layouts/application (4.5ms) Rendered shared/_header.html.erb (2.2ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 26ms (Views: 22.5ms | ActiveRecord: 0.0ms)
Started GET “/games” for 127.0.0.1 at 2015-07-23 00:35:29 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.2ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (25.0ms) Rendered games/index.html.erb within layouts/application (32.9ms) Rendered shared/_header.html.erb (2.4ms) Rendered shared/_footer.html.erb (1.1ms)
Completed 200 OK in 53ms (Views: 50.4ms | ActiveRecord: 1.9ms)
Started GET “/games?page=2” for 127.0.0.1 at 2015-07-23 00:35:33 +0200 Processing by GamesController#index as HTML
Parameters: {"page"=>"2"}
Rendered shared/_gallery_selector.html.erb (0.1ms)
[1m[36mGame Load (0.4ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 8[0m
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 9]]
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 10]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 11]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 12]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 13]]
Rendered games/_index_gallery.html.erb (14.8ms)
Rendered games/index.html.erb within layouts/application (84.6ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 101ms (Views: 98.5ms | ActiveRecord: 1.2ms)
Started GET “/games?page=1” for 127.0.0.1 at 2015-07-23 00:35:36 +0200 Processing by GamesController#index as HTML
Parameters: {"page"=>"1"}
Rendered shared/_gallery_selector.html.erb (0.0ms)
[1m[36mGame Load (0.8ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "games"
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]]
Rendered games/_index_gallery.html.erb (17.7ms)
Rendered games/index.html.erb within layouts/application (21.0ms)
Rendered shared/_header.html.erb (2.3ms)
Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 44ms (Views: 40.7ms | ActiveRecord: 2.0ms)
Started GET “/” for 127.0.0.1 at 2015-07-23 00:35:38 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.7ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.6ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184591076880 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (14.5ms) Rendered welcome/index.html.erb within layouts/application (26.7ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 38ms (Views: 35.6ms | ActiveRecord: 1.7ms)
Started GET “/games” for 127.0.0.1 at 2015-07-23 00:35:39 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (22.6ms) Rendered games/index.html.erb within layouts/application (28.3ms) Rendered shared/_header.html.erb (56.4ms) Rendered shared/_footer.html.erb (2.7ms)
Completed 200 OK in 105ms (Views: 101.2ms | ActiveRecord: 2.1ms)
Started GET “/games?view=listview” for 127.0.0.1 at 2015-07-23 00:35:44 +0200 Processing by GamesController#index as HTML
Parameters: {"view"=>"listview"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]]
[1m[36mGameCode Load (0.9ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.4ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]]
[1m[36mGameCode Load (0.3ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]]
[1m[36mGameCode Load (0.4ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]]
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]]
Rendered games/_index_listview.html.erb (104.4ms)
Rendered games/index.html.erb within layouts/application (108.3ms)
Rendered shared/_header.html.erb (2.5ms)
Rendered shared/_footer.html.erb (1.6ms)
Completed 200 OK in 130ms (Views: 124.7ms | ActiveRecord: 4.4ms)
Started GET “/games?view=gallery” for 127.0.0.1 at 2015-07-23 00:35:45 +0200 Processing by GamesController#index as HTML
Parameters: {"view"=>"gallery"}
Rendered shared/_gallery_selector.html.erb (0.0ms)
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]]
Rendered games/_index_gallery.html.erb (12.6ms)
Rendered games/index.html.erb within layouts/application (15.1ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 26ms (Views: 24.0ms | ActiveRecord: 1.1ms)
Started GET “/games?view=listview” for 127.0.0.1 at 2015-07-23 00:35:45 +0200 Processing by GamesController#index as HTML
Parameters: {"view"=>"listview"}
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0
[1m[36m (1.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.4ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]]
[1m[36mGameCode Load (0.3ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]]
[1m[35m (0.6ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]]
[1m[36mGameCode Load (0.4ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]]
Rendered games/_index_listview.html.erb (48.4ms)
Rendered games/index.html.erb within layouts/application (51.9ms)
Rendered shared/_header.html.erb (3.1ms)
Rendered shared/_footer.html.erb (1.3ms)
Completed 200 OK in 74ms (Views: 67.7ms | ActiveRecord: 5.0ms)
Started GET “/” for 127.0.0.1 at 2015-07-23 00:35:51 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.6ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.8ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.2ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (50.8ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__4098466977689327045_70184591076880 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (26.7ms) Rendered welcome/index.html.erb within layouts/application (87.7ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 107ms (Views: 103.2ms | ActiveRecord: 2.6ms)
Started GET “/games” for 127.0.0.1 at 2015-07-23 00:35:52 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.2ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (23.4ms) Rendered games/index.html.erb within layouts/application (99.0ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 116ms (Views: 111.3ms | ActiveRecord: 2.2ms)
Started GET “/” for 127.0.0.1 at 2015-07-23 21:10:58 +0200
[1m[36mActiveRecord::SchemaMigration Load (1.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (27.4ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.4ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (6.9ms) [1m[36mUser Load (0.9ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (22.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__2389021538280210081_70101672645800 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (3.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (79.3ms) Rendered welcome/index.html.erb within layouts/application (146.2ms) Rendered shared/_header.html.erb (11.3ms) Rendered shared/_splash.html.erb (0.9ms) Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 352ms (Views: 319.5ms | ActiveRecord: 7.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-23 21:10:58 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-23 21:10:58 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-23 21:10:58 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-23 21:10:58 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-23 21:10:58 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-23 21:10:58 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-23 21:10:58 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-23 21:10:58 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-23 21:10:58 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-23 21:10:58 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-23 21:10:58 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-23 21:10:58 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-23 21:10:58 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-23 21:10:58 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-23 21:10:58 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-23 21:10:58 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-23 21:10:58 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-23 21:10:58 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-23 21:10:58 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-23 21:10:58 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-23 21:10:58 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-23 21:10:58 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-23 21:10:58 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-23 21:10:58 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-23 21:10:58 +0200
Started GET “/assets/fontawesome-webfont.woff2?v=4.3.0” for 127.0.0.1 at 2015-07-23 21:10:59 +0200
Started GET “/games” for 127.0.0.1 at 2015-07-23 21:11:03 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.4ms) [1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (18.6ms) Rendered games/index.html.erb within layouts/application (23.5ms) Rendered shared/_header.html.erb (2.2ms) Rendered shared/_footer.html.erb (1.6ms)
Completed 200 OK in 79ms (Views: 74.8ms | ActiveRecord: 2.1ms)
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-07-23 21:11:07 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.4ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 2]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35mGameCode Load (0.8ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 2]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 20]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 43]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 40]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 24]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 42]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 17]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]]
Rendered games/show.html.erb within layouts/application (27.7ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 53ms (Views: 37.5ms | ActiveRecord: 2.7ms)
Started GET “/users/20” for 127.0.0.1 at 2015-07-23 21:11:10 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"20"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "20"]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 20]]
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 20]]
[1m[35mGameCode Load (0.2ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 20]]
[1m[36mGame Load (0.9ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 5]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 5]]
Rendered users/show.html.erb within layouts/application (14.2ms)
Rendered shared/_header.html.erb (4.9ms)
Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 43ms (Views: 39.0ms | ActiveRecord: 1.8ms)
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-07-23 21:11:12 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[35mGame Load (0.5ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
Rendered games/show.html.erb within layouts/application (30.8ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 54ms (Views: 44.7ms | ActiveRecord: 3.5ms)
Started GET “/games” for 127.0.0.1 at 2015-07-23 21:11:19 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (14.3ms) Rendered games/index.html.erb within layouts/application (52.7ms) Rendered shared/_header.html.erb (0.9ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 63ms (Views: 61.3ms | ActiveRecord: 1.2ms)
Started GET “/” for 127.0.0.1 at 2015-07-23 21:11:51 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (4.6ms) [1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (5.1ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (4.7ms) [1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (10.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__2389021538280210081_70101702824240 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (20.5ms) Rendered welcome/index.html.erb within layouts/application (52.7ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_splash.html.erb (0.6ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 69ms (Views: 63.9ms | ActiveRecord: 3.3ms)
Started GET “/games” for 127.0.0.1 at 2015-07-23 21:13:12 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (10.9ms) Rendered games/index.html.erb within layouts/application (13.8ms) Rendered shared/_header.html.erb (0.9ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 29ms (Views: 27.4ms | ActiveRecord: 1.0ms)
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-07-23 21:13:13 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[36mGame Load (0.8ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 1]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35mGameCode Load (0.3ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 1]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 26]]
[1m[35mUser Load (0.8ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 31]]
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 38]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 46]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 14]]
Rendered games/show.html.erb within layouts/application (17.2ms)
Rendered shared/_header.html.erb (1.6ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 38ms (Views: 26.9ms | ActiveRecord: 3.1ms)
Started GET “/users/sign_in” for 127.0.0.1 at 2015-07-23 21:13:15 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (1.8ms) Rendered devise/sessions/new.html.erb within layouts/application (21.9ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 48ms (Views: 42.5ms | ActiveRecord: 0.0ms)
Started POST “/users/sign_in” for 127.0.0.1 at 2015-07-23 21:13:18 +0200 Processing by Devise::SessionsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"AC9qxnaFqa/u4pGy19fDTLsSz2u11WEwj9+vEe2FXzU=", "user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."email" = 'admin@example.com' ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mSQL (0.7ms)[0m UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Wed, 22 Jul 2015 17:02:39 UTC +00:00], ["current_sign_in_at", Thu, 23 Jul 2015 19:13:18 UTC +00:00], ["sign_in_count", 4], ["updated_at", Thu, 23 Jul 2015 19:13:18 UTC +00:00]]
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
Redirected to localhost:3000/ Completed 302 Found in 84ms (ActiveRecord: 1.6ms)
Started GET “/” for 127.0.0.1 at 2015-07-23 21:13:18 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.2ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.6ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.0ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__2389021538280210081_70101672645800 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (16.0ms) Rendered welcome/index.html.erb within layouts/application (26.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.9ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 40ms (Views: 36.6ms | ActiveRecord: 2.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:18 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:18 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:18 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:18 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:18 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:18 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:18 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:18 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:18 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:18 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:18 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:18 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:18 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:18 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:18 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:18 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:18 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:18 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:18 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:18 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:18 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:18 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:18 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:18 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:18 +0200
Started GET “/games” for 127.0.0.1 at 2015-07-23 21:13:19 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.2ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (21.1ms) Rendered games/index.html.erb within layouts/application (25.5ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 37ms (Views: 33.7ms | ActiveRecord: 2.0ms)
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-07-23 21:13:21 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 1]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 1]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 26]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 31]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 38]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 46]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 14]]
Rendered games/show.html.erb within layouts/application (11.4ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 24ms (Views: 20.1ms | ActiveRecord: 1.1ms)
Started GET “/games/spirols-of-doom/edit” for 127.0.0.1 at 2015-07-23 21:13:23 +0200 Processing by GamesController#edit as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1
Rendered games/edit.html.erb within layouts/application (7.0ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 23ms (Views: 19.9ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:23 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:23 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:23 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:23 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:23 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:23 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:23 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:23 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:23 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:23 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:23 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:23 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:23 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:23 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:23 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:23 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:24 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:24 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:24 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:24 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:24 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:24 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:24 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:24 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:24 +0200
Started PATCH “/games/spirols-of-doom” for 127.0.0.1 at 2015-07-23 21:13:39 +0200 Processing by GamesController#update as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"TvXNvIvOE7reOXvek4LNBfr8siebAocTAb1RlZY89nk=", "game"=>{"name"=>"Spirols of Doom", "creator"=>"Ferry LLC", "company_url"=>"http://www.mitchell.net", "cover_url"=>"http://spielercheats.de/wp-content/uploads/2015/05/wrapper.jpg", "code_length"=>"10", "description"=>"Et corporis neque. Inventore accusamus laboriosam deserunt reprehenderit deleniti."}, "commit"=>"Save changes", "id"=>"spirols-of-doom"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mSQL (1.4ms)[0m UPDATE "games" SET "cover_url" = ?, "updated_at" = ? WHERE "games"."id" = 1 [["cover_url", "http://spielercheats.de/wp-content/uploads/2015/05/wrapper.jpg"], ["updated_at", Thu, 23 Jul 2015 19:13:39 UTC +00:00]]
[1m[36m (1.6ms)[0m [1mcommit transaction[0m
Redirected to localhost:3000/games/spirols-of-doom Completed 302 Found in 13ms (ActiveRecord: 3.3ms)
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-07-23 21:13:39 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 1]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 26]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 31]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 38]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 46]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 14]]
Rendered games/show.html.erb within layouts/application (11.7ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 25ms (Views: 21.9ms | ActiveRecord: 1.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:39 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:39 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:39 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:39 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:39 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:39 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:39 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:39 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:39 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:39 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:39 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:39 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:39 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:39 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:39 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:39 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:39 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:39 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-23 21:13:39 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:39 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:39 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:39 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:39 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:39 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-23 21:13:39 +0200
Started GET “/games” for 127.0.0.1 at 2015-07-23 21:13:43 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (74.6ms) Rendered games/index.html.erb within layouts/application (78.2ms) Rendered shared/_header.html.erb (3.8ms) Rendered shared/_footer.html.erb (1.8ms)
Completed 200 OK in 99ms (Views: 95.3ms | ActiveRecord: 2.4ms)
Started GET “/games” for 127.0.0.1 at 2015-07-23 21:14:17 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (15.3ms) Rendered games/index.html.erb within layouts/application (18.0ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (37.6ms)
Completed 200 OK in 66ms (Views: 63.4ms | ActiveRecord: 1.3ms)
Started GET “/coins” for 127.0.0.1 at 2015-07-23 21:14:20 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]] Rendered users/your_coins.html.erb within layouts/application (1.0ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 15ms (Views: 12.9ms | ActiveRecord: 0.3ms)
Started DELETE “/users/sign_out” for 127.0.0.1 at 2015-07-23 21:14:26 +0200 Processing by Devise::SessionsController#destroy as HTML
Parameters: {"authenticity_token"=>"TvXNvIvOE7reOXvek4LNBfr8siebAocTAb1RlZY89nk="}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mSQL (0.4ms)[0m UPDATE "users" SET "remember_created_at" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["remember_created_at", nil], ["updated_at", Thu, 23 Jul 2015 19:14:26 UTC +00:00]]
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
Redirected to localhost:3000/ Completed 302 Found in 6ms (ActiveRecord: 2.0ms)
Started GET “/” for 127.0.0.1 at 2015-07-23 21:14:26 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.4ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.8ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (4.2ms) [1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (7.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__2389021538280210081_70101672645800 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (16.5ms) Rendered welcome/index.html.erb within layouts/application (35.6ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 47ms (Views: 43.6ms | ActiveRecord: 2.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:27 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:27 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:27 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:27 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:27 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:27 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:27 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:27 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:27 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:27 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:27 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:27 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:27 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:27 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:27 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:27 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:27 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:27 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:27 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:27 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:27 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:27 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:27 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:27 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:27 +0200
Started GET “/users/sign_in” for 127.0.0.1 at 2015-07-23 21:14:28 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (0.3ms) Rendered devise/sessions/new.html.erb within layouts/application (2.6ms) Rendered shared/_header.html.erb (4.4ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 27ms (Views: 22.9ms | ActiveRecord: 0.0ms)
Started GET “/users/sign_up” for 127.0.0.1 at 2015-07-23 21:14:32 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (1.5ms) Rendered devise/registrations/new.html.erb within layouts/application (8.2ms) Rendered shared/_header.html.erb (2.2ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 26ms (Views: 24.0ms | ActiveRecord: 0.0ms)
Started POST “/users” for 127.0.0.1 at 2015-07-23 21:14:37 +0200 Processing by Devise::RegistrationsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"c9B3+tycTsfpjtBxruuNx2DzcfmN5FoJ8idT4ZCQ1SQ=", "user"=>{"nickname"=>"peter", "email"=>"peter@son.de", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "community_terms"=>"0"}, "commit"=>"Sign up"}
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'peter@son.de' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('peter') LIMIT 1[0m
[1m[35m (0.1ms)[0m rollback transaction
Rendered devise/shared/_links.html.erb (0.3ms)
Rendered devise/registrations/new.html.erb within layouts/application (3.4ms)
Rendered shared/_header.html.erb (0.9ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 84ms (Views: 14.9ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:37 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:37 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:37 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:37 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:37 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:37 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:37 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:37 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:37 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:37 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:37 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:37 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:37 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:37 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:37 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:37 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:37 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:37 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:37 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:37 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:37 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:37 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:37 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:37 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:37 +0200
Started GET “/users/sign_in” for 127.0.0.1 at 2015-07-23 21:14:40 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (0.4ms) Rendered devise/sessions/new.html.erb within layouts/application (2.2ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:40 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:40 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:40 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:40 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:40 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:40 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:40 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:40 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:40 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:40 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:40 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:40 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:40 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:40 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:40 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:40 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:40 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:40 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:40 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:40 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:40 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:40 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:40 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:40 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:40 +0200
Started POST “/users/sign_in” for 127.0.0.1 at 2015-07-23 21:14:43 +0200 Processing by Devise::SessionsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"c9B3+tycTsfpjtBxruuNx2DzcfmN5FoJ8idT4ZCQ1SQ=", "user"=>{"email"=>"peter@son.de", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"}
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'peter@son.de' ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mSQL (0.8ms)[0m [1mUPDATE "users" SET "remember_created_at" = ?, "updated_at" = ? WHERE "users"."id" = 52[0m [["remember_created_at", Thu, 23 Jul 2015 19:14:43 UTC +00:00], ["updated_at", Thu, 23 Jul 2015 19:14:43 UTC +00:00]]
[1m[35m (2.3ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mSQL (0.4ms)[0m UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 52 [["last_sign_in_at", Fri, 03 Jul 2015 15:50:10 UTC +00:00], ["current_sign_in_at", Thu, 23 Jul 2015 19:14:43 UTC +00:00], ["sign_in_count", 7], ["updated_at", Thu, 23 Jul 2015 19:14:43 UTC +00:00]]
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
Redirected to localhost:3000/ Completed 302 Found in 81ms (ActiveRecord: 4.7ms)
Started GET “/” for 127.0.0.1 at 2015-07-23 21:14:43 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.2ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.6ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (1.9ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (6.7ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__2389021538280210081_70101672645800 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (22.8ms) Rendered welcome/index.html.erb within layouts/application (38.5ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.4ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 56ms (Views: 51.9ms | ActiveRecord: 2.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:43 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:43 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:43 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:43 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:43 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:43 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:43 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:43 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:43 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:43 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:43 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:43 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:43 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:43 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-23 21:14:43 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:43 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:43 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:43 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:43 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:43 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:43 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:43 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:43 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:43 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-23 21:14:43 +0200
Started GET “/games” for 127.0.0.1 at 2015-07-23 21:14:45 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.2ms) [1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.6ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (28.0ms) Rendered games/index.html.erb within layouts/application (33.7ms) Rendered shared/_header.html.erb (2.1ms) Rendered shared/_footer.html.erb (1.8ms)
Completed 200 OK in 125ms (Views: 119.3ms | ActiveRecord: 2.7ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-07-23 21:14:46 +0200 Processing by GameRequestsController#new as HTML
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in _app_views_game_requests_new_html_erb__2796108714050772786_70101692803360 at /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/new.html.erb:25)
Rendered game_requests/new.html.erb within layouts/application (5.3ms) Rendered shared/_header.html.erb (2.0ms) Rendered shared/_footer.html.erb (2.5ms)
Completed 200 OK in 39ms (Views: 27.3ms | ActiveRecord: 0.9ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-07-23 21:14:52 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Schimmelkäse", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Schimmelkäse'[0m
[1m[35m (0.2ms)[0m begin transaction
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "game_requests" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 23 Jul 2015 19:14:52 UTC +00:00], ["name", "Schimmelkäse"], ["updated_at", Thu, 23 Jul 2015 19:14:52 UTC +00:00]]
[1m[35m (0.6ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE (LOWER("users"."nickname") = LOWER('peter') AND "users"."id" != 52) LIMIT 1
[1m[36mSQL (0.3ms)[0m [1mUPDATE "users" SET "requests_today" = ?, "updated_at" = ? WHERE "users"."id" = 52[0m [["requests_today", 13], ["updated_at", Thu, 23 Jul 2015 19:14:52 UTC +00:00]]
[1m[35m (0.5ms)[0m commit transaction
[1m[36mGameRequest Load (0.4ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Schimmelkäse'[0m
Rendered game_requests/_check_requests.html.erb (3.5ms)
Rendered game_requests/check_requests.js.erb (8.5ms)
Completed 200 OK in 34ms (Views: 12.6ms | ActiveRecord: 2.9ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-07-23 21:14:55 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Schimmelkäse", "commit"=>"Check Requests"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Schimmelkäse'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Schimmelkäse'
Rendered game_requests/_check_requests.html.erb (1.3ms)
Rendered game_requests/check_requests.js.erb (2.3ms)
Completed 200 OK in 7ms (Views: 4.0ms | ActiveRecord: 0.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-07-23 21:14:55 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Schimmelkäse", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Schimmelkäse'
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Schimmelkäse'[0m
Rendered game_requests/_check_requests.html.erb (0.7ms)
Rendered game_requests/check_requests.js.erb (1.3ms)
Completed 200 OK in 6ms (Views: 3.1ms | ActiveRecord: 0.4ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-07-23 21:14:55 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Schimmelkäse", "commit"=>"Check Requests"}
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Schimmelkäse'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Schimmelkäse'
Rendered game_requests/_check_requests.html.erb (1.0ms)
Rendered game_requests/check_requests.js.erb (1.7ms)
Completed 200 OK in 10ms (Views: 3.8ms | ActiveRecord: 1.0ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-07-23 21:14:55 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Schimmelkäse", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Schimmelkäse'
[1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Schimmelkäse'[0m
Rendered game_requests/_check_requests.html.erb (0.9ms)
Rendered game_requests/check_requests.js.erb (1.6ms)
Completed 200 OK in 8ms (Views: 3.3ms | ActiveRecord: 0.5ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-07-23 21:15:01 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Schimmelkäse", "commit"=>"Check Requests"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Schimmelkäse'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Schimmelkäse'
Rendered game_requests/_check_requests.html.erb (0.8ms)
Rendered game_requests/check_requests.js.erb (1.4ms)
Completed 200 OK in 8ms (Views: 3.2ms | ActiveRecord: 0.8ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-07-23 21:15:01 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Schimmelkäse", "commit"=>"Check Requests"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Schimmelkäse'
[1m[36mGameRequest Load (0.3ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Schimmelkäse'[0m
Rendered game_requests/_check_requests.html.erb (1.4ms)
Rendered game_requests/check_requests.js.erb (2.2ms)
Completed 200 OK in 7ms (Views: 3.7ms | ActiveRecord: 0.6ms)
Started POST “/check_requests” for 127.0.0.1 at 2015-07-23 21:15:01 +0200 Processing by GameRequestsController#check_requests as JS
Parameters: {"utf8"=>"✓", "name"=>"Schimmelkäse", "commit"=>"Check Requests"}
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_requests" WHERE "game_requests"."name" = 'Schimmelkäse'[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."name" = 'Schimmelkäse'
Rendered game_requests/_check_requests.html.erb (0.8ms)
Rendered game_requests/check_requests.js.erb (1.8ms)
Completed 200 OK in 8ms (Views: 3.6ms | ActiveRecord: 0.8ms)
Started GET “/coins” for 127.0.0.1 at 2015-07-23 21:15:03 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.2ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 11ms (Views: 9.7ms | ActiveRecord: 0.3ms)
Started GET “/” for 127.0.0.1 at 2015-07-23 21:15:04 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (38.3ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.6ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__2389021538280210081_70101702824240 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (14.5ms) Rendered welcome/index.html.erb within layouts/application (61.5ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.5ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 117ms (Views: 114.8ms | ActiveRecord: 2.0ms)
Started GET “/games/sphere-of-fire” for 127.0.0.1 at 2015-07-23 21:15:08 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"sphere-of-fire"}
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'sphere-of-fire' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 10]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 10]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 10]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 35]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 43]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 14]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 28]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 37]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 19]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 19]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 47]]
Rendered games/show.html.erb within layouts/application (13.2ms)
Rendered shared/_header.html.erb (0.9ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 26ms (Views: 21.4ms | ActiveRecord: 1.5ms)
Started POST “/game_codes” for 127.0.0.1 at 2015-07-23 21:15:31 +0200 Processing by GameCodesController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"qcvSjQcOCluN8n1e+FBZh5HNws8x6R2ihPi9jvrK4E8=", "game_code"=>{"code"=>"18666666", "game_id"=>"10"}, "commit"=>"add"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "10"]]
[1m[35m (0.2ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mSQL (0.4ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "18666666"], ["created_at", Thu, 23 Jul 2015 19:15:31 UTC +00:00], ["game_id", 10], ["updated_at", Thu, 23 Jul 2015 19:15:31 UTC +00:00], ["user_id", 52]]
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 10]]
Redirected to localhost:3000/games/sphere-of-fire Completed 302 Found in 14ms (ActiveRecord: 2.0ms)
Started GET “/games/sphere-of-fire” for 127.0.0.1 at 2015-07-23 21:15:31 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"sphere-of-fire"}
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'sphere-of-fire' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 10]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 10]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 10]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 35]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 43]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 14]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 28]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 37]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 19]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 19]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 47]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]]
Rendered games/show.html.erb within layouts/application (14.7ms)
Rendered shared/_header.html.erb (0.9ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 29ms (Views: 23.9ms | ActiveRecord: 1.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:31 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:31 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:31 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:31 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:31 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:31 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:31 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:31 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:31 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:31 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:31 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:31 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:31 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:31 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:31 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-23 21:15:31 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-23 21:15:31 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-23 21:15:31 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-23 21:15:31 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-23 21:15:31 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-23 21:15:31 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-23 21:15:31 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-23 21:15:31 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-23 21:15:31 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-23 21:15:31 +0200
Started POST “/game_codes” for 127.0.0.1 at 2015-07-23 21:15:41 +0200 Processing by GameCodesController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"qcvSjQcOCluN8n1e+FBZh5HNws8x6R2ihPi9jvrK4E8=", "game_code"=>{"code"=>"22233344", "game_id"=>"10"}, "commit"=>"add"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", "10"]]
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 10]]
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "22233344"], ["created_at", Thu, 23 Jul 2015 19:15:41 UTC +00:00], ["game_id", 10], ["updated_at", Thu, 23 Jul 2015 19:15:41 UTC +00:00], ["user_id", 52]]
[1m[35m (0.7ms)[0m commit transaction
[1m[36mGame Load (0.4ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 10]]
Redirected to localhost:3000/games/sphere-of-fire Completed 302 Found in 12ms (ActiveRecord: 2.1ms)
Started GET “/games/sphere-of-fire” for 127.0.0.1 at 2015-07-23 21:15:41 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"sphere-of-fire"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'sphere-of-fire' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 10]]
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 10]]
[1m[35mGameCode Load (0.2ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 10]]
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 35]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 14]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 28]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 37]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 19]]
[1m[36mCACHE (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 19]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 47]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 52]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]]
Rendered games/show.html.erb within layouts/application (68.9ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 83ms (Views: 78.2ms | ActiveRecord: 2.1ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:41 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:41 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:41 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:41 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:41 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:41 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:41 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:41 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:41 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:41 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:41 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:41 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:41 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:41 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-23 21:15:41 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-23 21:15:41 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-23 21:15:41 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-23 21:15:41 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-23 21:15:41 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-23 21:15:41 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-23 21:15:41 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-23 21:15:41 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-23 21:15:41 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-23 21:15:41 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-23 21:15:41 +0200
Started GET “/games” for 127.0.0.1 at 2015-07-23 21:15:44 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.2ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (23.7ms) Rendered games/index.html.erb within layouts/application (29.5ms) Rendered shared/_header.html.erb (1.6ms) Rendered shared/_footer.html.erb (49.0ms)
Completed 200 OK in 95ms (Views: 91.0ms | ActiveRecord: 2.6ms)
Started GET “/coins” for 127.0.0.1 at 2015-07-23 21:15:46 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (2.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 18ms (Views: 14.5ms | ActiveRecord: 0.3ms)
Started GET “/coins” for 127.0.0.1 at 2015-07-23 21:16:02 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.2ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 56ms (Views: 53.5ms | ActiveRecord: 0.3ms)
Started GET “/” for 127.0.0.1 at 2015-07-23 21:16:03 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.4ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.0ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.6ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.6ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb__2389021538280210081_70101702824240 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (12.7ms) Rendered welcome/index.html.erb within layouts/application (25.3ms) [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (1.8ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 37ms (Views: 34.1ms | ActiveRecord: 2.1ms)
Started GET “/games/go-go-hentai-panic-hack-slasher-tenkaichi-3” for 127.0.0.1 at 2015-07-23 21:17:04 +0200
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by GamesController#show as HTML
Parameters: {"id"=>"go-go-hentai-panic-hack-slasher-tenkaichi-3"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'go-go-hentai-panic-hack-slasher-tenkaichi-3' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (1.5ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 13]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 13]]
Rendered games/show.html.erb within layouts/application (59.5ms)
Rendered shared/_header.html.erb (1.9ms)
Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 221ms (Views: 169.4ms | ActiveRecord: 2.8ms)
Started GET “/” for 127.0.0.1 at 2015-07-23 21:17:09 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (4.9ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.5ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (4.4ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (6.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4503053672372176134_70133558959220 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (17.2ms) Rendered welcome/index.html.erb within layouts/application (38.4ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.3ms) Rendered shared/_splash.html.erb (0.4ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 90ms (Views: 86.4ms | ActiveRecord: 2.3ms)
Started GET “/” for 127.0.0.1 at 2015-07-23 21:17:14 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.3ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.6ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.2ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4503053672372176134_70133558959220 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (1.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (22.2ms) Rendered welcome/index.html.erb within layouts/application (33.6ms) [1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (4.0ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 53ms (Views: 47.5ms | ActiveRecord: 4.3ms)
Started GET “/games/reason-of-destiny” for 127.0.0.1 at 2015-07-23 21:17:19 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"reason-of-destiny"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'reason-of-destiny' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 9]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 9]]
[1m[35mGameCode Load (0.2ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 9]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 26]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 45]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 46]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 31]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 30]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]]
Rendered games/show.html.erb within layouts/application (13.4ms)
Rendered shared/_header.html.erb (0.9ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 25ms (Views: 21.3ms | ActiveRecord: 1.5ms)
Started GET “/coins” for 127.0.0.1 at 2015-07-23 21:17:45 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.6ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 13ms (Views: 10.8ms | ActiveRecord: 0.3ms)
Started GET “/coins” for 127.0.0.1 at 2015-07-23 21:18:07 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]] Rendered users/your_coins.html.erb within layouts/application (0.1ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 12ms (Views: 9.5ms | ActiveRecord: 0.4ms)
Started DELETE “/users/sign_out” for 127.0.0.1 at 2015-07-23 21:18:08 +0200 Processing by Devise::SessionsController#destroy as HTML
Parameters: {"authenticity_token"=>"qcvSjQcOCluN8n1e+FBZh5HNws8x6R2ihPi9jvrK4E8="}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 52 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mSQL (1.4ms)[0m [1mUPDATE "users" SET "remember_created_at" = ?, "updated_at" = ? WHERE "users"."id" = 52[0m [["remember_created_at", nil], ["updated_at", Thu, 23 Jul 2015 19:18:08 UTC +00:00]]
[1m[35m (2.6ms)[0m commit transaction
Redirected to localhost:3000/ Completed 302 Found in 16ms (ActiveRecord: 4.2ms)
Started GET “/” for 127.0.0.1 at 2015-07-23 21:18:08 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (4.1ms) [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (1.8ms) [1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (5.9ms) [1m[35mUser Load (1.1ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (10.9ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___4503053672372176134_70133551394460 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.8ms) Rendered welcome/index.html.erb within layouts/application (46.2ms) Rendered shared/_header.html.erb (10.4ms) Rendered shared/_splash.html.erb (1.6ms) Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 75ms (Views: 70.6ms | ActiveRecord: 3.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-23 21:18:08 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-23 21:18:08 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-23 21:18:08 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-23 21:18:08 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-23 21:18:08 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-23 21:18:08 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-23 21:18:08 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-23 21:18:08 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-23 21:18:08 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-23 21:18:08 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-23 21:18:08 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-23 21:18:08 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-23 21:18:08 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-23 21:18:08 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-23 21:18:08 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-23 21:18:08 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-23 21:18:08 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-23 21:18:08 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-23 21:18:08 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-23 21:18:08 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-23 21:18:08 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-23 21:18:08 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-23 21:18:08 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-23 21:18:08 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-23 21:18:08 +0200
Started GET “/games” for 127.0.0.1 at 2015-07-23 21:18:10 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.3ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (11.3ms) Rendered games/index.html.erb within layouts/application (15.4ms) Rendered shared/_header.html.erb (0.9ms) Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 27ms (Views: 24.6ms | ActiveRecord: 1.0ms)
Started GET “/games?page=2” for 127.0.0.1 at 2015-07-23 21:18:15 +0200 Processing by GamesController#index as HTML
Parameters: {"page"=>"2"}
Rendered shared/_gallery_selector.html.erb (0.0ms)
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 8
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 9]]
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 10]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 11]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 12]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 13]]
Rendered games/_index_gallery.html.erb (13.8ms)
Rendered games/index.html.erb within layouts/application (16.4ms)
Rendered shared/_header.html.erb (1.6ms)
Rendered shared/_footer.html.erb (1.9ms)
Completed 200 OK in 95ms (Views: 92.8ms | ActiveRecord: 1.0ms)
Started GET “/games/sphere-of-fire” for 127.0.0.1 at 2015-07-23 21:18:17 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"sphere-of-fire"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'sphere-of-fire' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 10]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 10]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 10]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 35]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 43]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 14]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 28]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 37]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 19]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 19]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 47]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 52]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 52]]
Rendered games/show.html.erb within layouts/application (15.0ms)
Rendered shared/_header.html.erb (2.0ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 40ms (Views: 35.7ms | ActiveRecord: 1.3ms)
Started GET “/games” for 127.0.0.1 at 2015-07-23 21:19:02 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (24.4ms) Rendered games/index.html.erb within layouts/application (28.2ms) Rendered shared/_header.html.erb (1.9ms) Rendered shared/_footer.html.erb (1.7ms)
Completed 200 OK in 45ms (Views: 41.0ms | ActiveRecord: 2.3ms)
Started GET “/game_requests/new” for 127.0.0.1 at 2015-07-23 21:19:03 +0200 Processing by GameRequestsController#new as HTML Completed 401 Unauthorized in 1ms
Started GET “/users/sign_in” for 127.0.0.1 at 2015-07-23 21:19:03 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (1.1ms) Rendered devise/sessions/new.html.erb within layouts/application (8.8ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 22ms (Views: 20.0ms | ActiveRecord: 0.0ms)
Started GET “/games” for 127.0.0.1 at 2015-07-23 21:19:07 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (28.6ms) Rendered games/index.html.erb within layouts/application (31.4ms) Rendered shared/_header.html.erb (2.3ms) Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 118ms (Views: 114.4ms | ActiveRecord: 2.0ms)
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-07-23 21:19:12 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 1]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 1]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 26]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 31]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 38]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 46]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 14]]
Rendered games/show.html.erb within layouts/application (7.8ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 20ms (Views: 16.5ms | ActiveRecord: 1.0ms)
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-07-23 21:19:19 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[36mGame Load (0.5ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.4ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 1]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 26]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 31]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 38]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 46]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 14]]
Rendered games/show.html.erb within layouts/application (14.8ms)
Rendered shared/_header.html.erb (0.9ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 35ms (Views: 28.6ms | ActiveRecord: 1.9ms)
Started GET “/” for 127.0.0.1 at 2015-07-30 18:55:21 +0200
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.5ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (42.7ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (3.9ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (9.1ms) [1m[36mUser Load (1.1ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (20.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___2178824307364675017_70141305134900 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (2.6ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (94.7ms) Rendered welcome/index.html.erb within layouts/application (185.0ms) Rendered shared/_header.html.erb (9.9ms) Rendered shared/_splash.html.erb (0.7ms) Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 458ms (Views: 377.4ms | ActiveRecord: 6.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:22 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:22 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:22 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:22 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:22 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:22 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:22 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:22 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:22 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:22 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:22 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:22 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:22 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:22 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:22 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-30 18:55:22 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-30 18:55:22 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-30 18:55:22 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-30 18:55:22 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-30 18:55:22 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-30 18:55:22 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-30 18:55:22 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-30 18:55:22 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-30 18:55:22 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-30 18:55:22 +0200
Started GET “/assets/fontawesome-webfont.woff2?v=4.3.0” for 127.0.0.1 at 2015-07-30 18:55:22 +0200
Started GET “/” for 127.0.0.1 at 2015-07-30 18:55:33 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.8ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.8ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.4ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.4ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___2178824307364675017_70141305134900 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (22.4ms) Rendered welcome/index.html.erb within layouts/application (34.5ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 52ms (Views: 49.4ms | ActiveRecord: 2.1ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/” for 127.0.0.1 at 2015-07-30 18:55:33 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (4.0ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.1ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (3.7ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (15.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___2178824307364675017_70141305134900 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.9ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (41.9ms) Rendered welcome/index.html.erb within layouts/application (70.5ms) Rendered shared/_header.html.erb (2.0ms) Rendered shared/_splash.html.erb (1.6ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 92ms (Views: 86.0ms | ActiveRecord: 4.2ms)
Started GET “/” for 127.0.0.1 at 2015-07-30 18:55:33 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.2ms) [1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (1.6ms) [1m[36mGame Load (0.8ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (8.4ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (6.6ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___2178824307364675017_70141305134900 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (48.1ms) Rendered welcome/index.html.erb within layouts/application (73.5ms) Rendered shared/_header.html.erb (1.7ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 88ms (Views: 82.9ms | ActiveRecord: 3.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-07-30 18:55:33 +0200
Started GET “/api/get_code_length/1” for 127.0.0.1 at 2015-07-30 18:55:41 +0200 Processing by GamesController#get_code_length as HTML
Parameters: {"id"=>"1"}
Completed 401 Unauthorized in 2ms
Started GET “/users/sign_in” for 127.0.0.1 at 2015-07-30 18:55:41 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (1.4ms) Rendered devise/sessions/new.html.erb within layouts/application (11.4ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 26ms (Views: 22.6ms | ActiveRecord: 0.0ms)
Started GET “/” for 127.0.0.1 at 2015-08-14 12:19:49 +0200
[1m[36mActiveRecord::SchemaMigration Load (1.0ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.7ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (82.4ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.8ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (9.6ms) [1m[36mUser Load (1.0ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (23.8ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3261744246673083366_70254233659200 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (3.9ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (62.4ms) Rendered welcome/index.html.erb within layouts/application (192.2ms) Rendered shared/_header.html.erb (9.4ms) Rendered shared/_splash.html.erb (44.9ms) Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 446ms (Views: 410.7ms | ActiveRecord: 8.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:19:50 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:19:50 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:19:50 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:19:50 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:19:50 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:19:50 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:19:50 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:19:50 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:19:50 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:19:50 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:19:50 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:19:50 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:19:50 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:19:50 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:19:50 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:19:50 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:19:50 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:19:50 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:19:50 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:19:50 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:19:50 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:19:50 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:19:50 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:19:50 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:19:50 +0200
Started GET “/assets/fontawesome-webfont.woff2?v=4.3.0” for 127.0.0.1 at 2015-08-14 12:19:50 +0200
Started GET “/” for 127.0.0.1 at 2015-08-14 12:20:29 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.2ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.6ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.3ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3261744246673083366_70254233659200 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (15.5ms) Rendered welcome/index.html.erb within layouts/application (26.3ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_splash.html.erb (0.3ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 43ms (Views: 40.4ms | ActiveRecord: 1.9ms) Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:29 +0200 Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:29 +0200 Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:29 +0200 Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:29 +0200 Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:29 +0200 Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:29 +0200 Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:29 +0200 Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:29 +0200 Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:29 +0200 Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:29 +0200 Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:29 +0200 Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:29 +0200 Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:29 +0200 Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:29 +0200 Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:29 +0200 Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:29 +0200 Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:29 +0200 Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:29 +0200 Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:29 +0200 Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:29 +0200 Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:29 +0200 Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:29 +0200 Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:29 +0200 Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:29 +0200 Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:29 +0200 Started GET “/” for 127.0.0.1 at 2015-08-14 12:20:31 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.6ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.6ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.5ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (4.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3261744246673083366_70254233659200 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (19.5ms) Rendered welcome/index.html.erb within layouts/application (32.0ms) Rendered shared/_header.html.erb (1.8ms) Rendered shared/_splash.html.erb (0.3ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 107ms (Views: 104.7ms | ActiveRecord: 1.9ms) Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:31 +0200 Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:31 +0200 Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:31 +0200 Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:31 +0200 Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:31 +0200 Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:31 +0200 Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:31 +0200 Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:31 +0200 Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:31 +0200 Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:31 +0200 Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:31 +0200 Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:31 +0200 Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:31 +0200 Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:31 +0200 Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:31 +0200 Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:31 +0200 Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:31 +0200 Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:31 +0200 Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:31 +0200 Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:31 +0200 Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:31 +0200 Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:31 +0200 Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:31 +0200 Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:31 +0200 Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:31 +0200 Started GET “/” for 127.0.0.1 at 2015-08-14 12:20:36 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.0ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.6ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3261744246673083366_70254233659200 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (14.8ms) Rendered welcome/index.html.erb within layouts/application (25.2ms) Rendered shared/_header.html.erb (2.1ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 44ms (Views: 41.2ms | ActiveRecord: 1.8ms) Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:36 +0200 Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:36 +0200 Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:36 +0200 Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:36 +0200 Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:36 +0200 Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:36 +0200 Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:36 +0200 Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:36 +0200 Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:36 +0200 Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:36 +0200 Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:36 +0200 Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:36 +0200 Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:36 +0200 Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:36 +0200 Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:20:36 +0200 Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:36 +0200 Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:36 +0200 Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:36 +0200 Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:36 +0200 Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:36 +0200 Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:36 +0200 Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:36 +0200 Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:36 +0200 Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:36 +0200 Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:20:36 +0200 Started GET “/” for 127.0.0.1 at 2015-08-14 12:21:03 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.1ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.7ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.2ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.9ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3261744246673083366_70254233659200 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (95.5ms) Rendered welcome/index.html.erb within layouts/application (108.3ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 122ms (Views: 118.5ms | ActiveRecord: 2.1ms) Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:03 +0200 Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:03 +0200 Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:03 +0200 Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:03 +0200 Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:03 +0200 Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:03 +0200 Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:03 +0200 Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:03 +0200 Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:03 +0200 Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:03 +0200 Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:03 +0200 Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:03 +0200 Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:03 +0200 Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:03 +0200 Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:03 +0200 Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:03 +0200 Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:03 +0200 Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:03 +0200 Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:03 +0200 Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:03 +0200 Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:03 +0200 Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:03 +0200 Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:03 +0200 Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:03 +0200 Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:03 +0200 Started GET “/” for 127.0.0.1 at 2015-08-14 12:21:06 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.4ms) [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.8ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.4ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3261744246673083366_70254233659200 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.9ms) Rendered welcome/index.html.erb within layouts/application (30.5ms) Rendered shared/_header.html.erb (1.8ms) Rendered shared/_splash.html.erb (0.3ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 45ms (Views: 41.9ms | ActiveRecord: 2.5ms) Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:06 +0200 Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:06 +0200 Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:06 +0200 Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:06 +0200 Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:06 +0200 Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:06 +0200 Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:06 +0200 Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:06 +0200 Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:06 +0200 Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:06 +0200 Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:06 +0200 Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:06 +0200 Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:06 +0200 Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:06 +0200 Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:06 +0200 Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:06 +0200 Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:06 +0200 Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:06 +0200 Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:06 +0200 Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:06 +0200 Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:06 +0200 Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:06 +0200 Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:06 +0200 Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:06 +0200 Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:06 +0200 Started GET “/” for 127.0.0.1 at 2015-08-14 12:21:10 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.1ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.8ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.5ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3261744246673083366_70254233659200 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (23.3ms) Rendered welcome/index.html.erb within layouts/application (35.9ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_splash.html.erb (0.4ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 48ms (Views: 44.5ms | ActiveRecord: 2.7ms) Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:10 +0200 Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:10 +0200 Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:10 +0200 Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:10 +0200 Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:10 +0200 Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:10 +0200 Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:10 +0200 Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:10 +0200 Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:10 +0200 Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:10 +0200 Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:10 +0200 Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:10 +0200 Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:10 +0200 Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:10 +0200 Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:10 +0200 Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:10 +0200 Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:10 +0200 Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:10 +0200 Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:10 +0200 Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:10 +0200 Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:10 +0200 Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:10 +0200 Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:10 +0200 Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:10 +0200 Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:10 +0200 Started GET “/” for 127.0.0.1 at 2015-08-14 12:21:14 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.0ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.6ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (1.9ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3261744246673083366_70254233659200 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (20.8ms) Rendered welcome/index.html.erb within layouts/application (32.3ms) Rendered shared/_header.html.erb (2.1ms) Rendered shared/_splash.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 53ms (Views: 49.7ms | ActiveRecord: 2.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:14 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:14 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:14 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:14 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:14 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:14 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:14 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:14 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:14 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:14 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:14 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:14 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:14 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:14 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:14 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:14 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:14 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:14 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:14 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:14 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:14 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:14 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:14 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:14 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:14 +0200
Started GET “/games” for 127.0.0.1 at 2015-08-14 12:21:21 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.3ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (1.3ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (22.4ms) Rendered games/index.html.erb within layouts/application (27.4ms) Rendered shared/_header.html.erb (3.5ms) Rendered shared/_footer.html.erb (8.8ms)
Completed 200 OK in 54ms (Views: 48.8ms | ActiveRecord: 3.2ms)
Started GET “/users/sign_in” for 127.0.0.1 at 2015-08-14 12:21:49 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (1.9ms) Rendered devise/sessions/new.html.erb within layouts/application (15.8ms) Rendered shared/_header.html.erb (2.7ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 37ms (Views: 32.9ms | ActiveRecord: 0.0ms)
Started POST “/users/sign_in” for 127.0.0.1 at 2015-08-14 12:21:56 +0200 Processing by Devise::SessionsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"KYX6UeWtGA6kIY1KXgZWPaQE3s4X4vT+VOdgxQOiUEE=", "user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"}
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."email" = 'admin@example.com' ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mSQL (2.5ms)[0m UPDATE "users" SET "remember_created_at" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["remember_created_at", Fri, 14 Aug 2015 10:21:56 UTC +00:00], ["updated_at", Fri, 14 Aug 2015 10:21:56 UTC +00:00]]
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mSQL (0.5ms)[0m [1mUPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1[0m [["last_sign_in_at", Thu, 23 Jul 2015 19:13:18 UTC +00:00], ["current_sign_in_at", Fri, 14 Aug 2015 10:21:56 UTC +00:00], ["sign_in_count", 5], ["updated_at", Fri, 14 Aug 2015 10:21:56 UTC +00:00]]
[1m[35m (0.6ms)[0m commit transaction
Redirected to localhost:3000/ Completed 302 Found in 88ms (ActiveRecord: 4.8ms)
Started GET “/” for 127.0.0.1 at 2015-08-14 12:21:56 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.7ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.8ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (4.8ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3261744246673083366_70254233659200 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (31.0ms) Rendered welcome/index.html.erb within layouts/application (44.9ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.9ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 62ms (Views: 56.3ms | ActiveRecord: 3.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:56 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:56 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:56 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:56 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:56 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:56 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:56 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:56 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:56 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:56 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:56 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:56 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:56 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:56 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:21:56 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:56 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:56 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:56 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:56 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:56 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:56 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:56 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:56 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:56 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:21:56 +0200
Started GET “/users” for 127.0.0.1 at 2015-08-14 12:21:58 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (1.2ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (7.5ms) Rendered shared/_header.html.erb (2.2ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 28ms (Views: 19.5ms | ActiveRecord: 2.1ms)
Started GET “/users/1” for 127.0.0.1 at 2015-08-14 12:21:58 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]]
[1m[35mGameCode Exists (0.5ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 1]]
[1m[36mGameCode Load (0.9ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]]
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 7]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (22.6ms)
Rendered shared/_header.html.erb (1.3ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 79ms (Views: 75.3ms | ActiveRecord: 2.2ms)
Started GET “/coins” for 127.0.0.1 at 2015-08-14 12:21:59 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Rendered users/your_coins.html.erb within layouts/application (1.7ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 17ms (Views: 14.8ms | ActiveRecord: 0.3ms)
Started GET “/users” for 127.0.0.1 at 2015-08-14 12:22:02 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (12.1ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 26ms (Views: 23.9ms | ActiveRecord: 0.7ms)
Started GET “/games” for 127.0.0.1 at 2015-08-14 12:22:03 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (12.8ms) Rendered games/index.html.erb within layouts/application (15.4ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 26ms (Views: 23.4ms | ActiveRecord: 1.3ms)
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:22:04 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (1.3ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
Rendered games/show.html.erb within layouts/application (18.8ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 32ms (Views: 26.4ms | ActiveRecord: 2.9ms)
Started POST “/game_codes” for 127.0.0.1 at 2015-08-14 12:22:10 +0200 Processing by GameCodesController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tqsj0hWXxw3EEXslBwpr1Nk1xUdj5XIJQ9X0ct4S/zw=", "game_code"=>{"code"=>"23182738721", "game_id"=>"2"}, "commit"=>"add"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "2"]]
[1m[35m (0.0ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35m (0.1ms)[0m rollback transaction
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m
Rendered game_codes/new.html.erb within layouts/application (3.8ms)
Rendered shared/_header.html.erb (2.0ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 22ms (Views: 16.6ms | ActiveRecord: 0.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:10 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:10 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:10 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:10 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:10 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:10 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:10 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:10 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:10 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:10 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:10 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:10 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:10 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:10 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:10 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:22:10 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:22:10 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:22:10 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:22:10 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:22:10 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:22:10 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:22:10 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:22:10 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:22:10 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:22:10 +0200
Started POST “/game_codes” for 127.0.0.1 at 2015-08-14 12:22:18 +0200 Processing by GameCodesController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tqsj0hWXxw3EEXslBwpr1Nk1xUdj5XIJQ9X0ct4S/zw=", "game_code"=>{"code"=>"7283748592", "game_id"=>"2"}, "commit"=>"Add Code"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "2"]]
[1m[35m (0.1ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mSQL (1.6ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "7283748592"], ["created_at", Fri, 14 Aug 2015 10:22:18 UTC +00:00], ["game_id", 2], ["updated_at", Fri, 14 Aug 2015 10:22:18 UTC +00:00], ["user_id", 1]]
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
Redirected to localhost:3000/games/swords-of-master Completed 302 Found in 10ms (ActiveRecord: 3.0ms)
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:22:18 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (19.0ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 92ms (Views: 87.3ms | ActiveRecord: 2.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:18 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:18 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:18 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:18 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:18 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:18 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:18 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:18 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:18 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:18 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:18 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:18 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:18 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:18 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:22:18 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:22:18 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:22:18 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:22:18 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:22:18 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:22:18 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:22:18 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:22:18 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:22:18 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:22:18 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:22:18 +0200
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Migrating to AddVotesToGameCode (20150814102315)
[1m[35m (0.1ms)[0m begin transaction
[1m[36m (0.7ms)[0m [1mALTER TABLE "game_codes" ADD "votes" integer DEFAULT 1[0m
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150814102315"]]
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:24:12 +0200
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (1.6ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 2]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35mGameCode Load (0.2ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 2]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 20]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 43]]
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 40]]
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 24]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 42]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 17]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
Rendered games/show.html.erb within layouts/application (49.7ms)
Rendered shared/_header.html.erb (4.8ms)
Rendered shared/_footer.html.erb (1.6ms)
Completed 200 OK in 375ms (Views: 231.7ms | ActiveRecord: 5.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:24:12 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:24:12 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:24:12 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:24:12 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:24:12 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:24:12 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:24:12 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:24:12 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:24:12 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:24:12 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:24:12 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:24:12 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:24:12 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:24:12 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:24:12 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:24:12 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:24:12 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:24:12 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:24:12 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:24:12 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:24:12 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:24:12 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:24:12 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:24:12 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:24:12 +0200
Started GET “/users/20” for 127.0.0.1 at 2015-08-14 12:24:14 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"20"}
[1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "20"]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 20]]
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 20]]
[1m[36mGameCode Load (0.3ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 20]]
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 5]]
[1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 5]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (14.8ms)
Rendered shared/_header.html.erb (3.2ms)
Rendered shared/_footer.html.erb (1.3ms)
Completed 200 OK in 38ms (Views: 32.1ms | ActiveRecord: 2.2ms)
Started GET “/users” for 127.0.0.1 at 2015-08-14 12:24:17 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (6.1ms) Rendered shared/_header.html.erb (47.5ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 70ms (Views: 67.4ms | ActiveRecord: 0.6ms)
Started GET “/users/9” for 127.0.0.1 at 2015-08-14 12:24:18 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"9"}
[1m[36mUser Load (0.9ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "9"]]
[1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]]
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 9]]
[1m[35mGameCode Load (0.2ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]]
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 9]]
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (15.4ms)
Rendered shared/_header.html.erb (2.0ms)
Rendered shared/_footer.html.erb (1.1ms)
Completed 200 OK in 52ms (Views: 42.5ms | ActiveRecord: 2.6ms)
Started GET “/users” for 127.0.0.1 at 2015-08-14 12:24:19 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (5.9ms) Rendered shared/_header.html.erb (2.5ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 21ms (Views: 19.3ms | ActiveRecord: 0.5ms)
Started GET “/games” for 127.0.0.1 at 2015-08-14 12:24:20 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.3ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.6ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.6ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (22.4ms) Rendered games/index.html.erb within layouts/application (26.0ms) Rendered shared/_header.html.erb (7.8ms) Rendered shared/_footer.html.erb (6.2ms)
Completed 200 OK in 57ms (Views: 53.7ms | ActiveRecord: 2.5ms)
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:24:23 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (44.8ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 60ms (Views: 53.2ms | ActiveRecord: 4.1ms)
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:29:01 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.4ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.8ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.8ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.8ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (39.9ms)
Rendered shared/_header.html.erb (2.9ms)
Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 152ms (Views: 142.8ms | ActiveRecord: 4.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:01 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:01 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:01 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:01 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:01 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:01 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:01 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:01 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:01 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:01 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:01 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:01 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:01 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:01 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:01 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:01 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:01 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:01 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:01 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:01 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:01 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:01 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:01 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:01 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:01 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:29:12 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
Rendered games/show.html.erb within layouts/application (0.9ms)
Completed 500 Internal Server Error in 5ms
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:13: syntax error, unexpected ')' …ength: #{@game.code_length}“, );@output_buffer.safe_append=' … ^ /Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:16: syntax error, unexpected keyword_end, expecting ')' '; end
^
/Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:68: syntax error, unexpected keyword_ensure, expecting ')' /Users/rbarisic/rails_projects/game_codes/app/views/games/show.html.erb:70: syntax error, unexpected keyword_end, expecting ')'):
actionpack (4.0.8) lib/action_view/template.rb:299:in `module_eval' actionpack (4.0.8) lib/action_view/template.rb:299:in `compile' actionpack (4.0.8) lib/action_view/template.rb:248:in `block in compile!' actionpack (4.0.8) lib/action_view/template.rb:236:in `synchronize' actionpack (4.0.8) lib/action_view/template.rb:236:in `compile!' actionpack (4.0.8) lib/action_view/template.rb:142:in `block in render' activesupport (4.0.8) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.8) lib/action_view/template.rb:141:in `render' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:433:in `_run__2871415902100665705__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__27001408078701018__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (20.0ms)
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:29:15 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 2]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 2]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 20]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 43]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 40]]
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 24]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 42]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 17]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
Rendered games/show.html.erb within layouts/application (21.9ms)
Rendered shared/_header.html.erb (2.0ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 39ms (Views: 33.9ms | ActiveRecord: 2.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:15 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:15 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:15 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:15 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:15 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:15 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:15 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:15 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:15 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:15 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:15 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:15 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:15 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:15 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:15 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:15 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:15 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:15 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:15 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:15 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:15 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:15 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:15 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:15 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:15 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:29:18 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 2]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 2]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 20]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 43]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 40]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 24]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 42]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 17]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
Rendered games/show.html.erb within layouts/application (20.7ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 37ms (Views: 32.1ms | ActiveRecord: 2.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:18 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:18 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:18 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:18 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:18 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:18 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:18 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:18 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:18 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:18 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:18 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:18 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:18 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:18 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:18 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:18 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:18 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:18 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:18 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:18 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:18 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:18 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:18 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:18 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:18 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:29:29 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 2]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35mGameCode Load (0.2ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 2]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 20]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 43]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 40]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 24]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 42]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 17]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
Rendered games/show.html.erb within layouts/application (21.7ms)
Rendered shared/_header.html.erb (1.7ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 36ms (Views: 30.7ms | ActiveRecord: 2.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:29 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:29 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:29 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:29 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:29 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:29 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:29 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:29 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:29 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:29 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:29 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:29 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:29 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:29 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:29:29 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:29 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:29 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:29 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:29 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:29 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:29 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:29 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:29 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:29 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:29:29 +0200
Started GET “/” for 127.0.0.1 at 2015-08-14 12:35:34 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (6.7ms) [1m[36m (0.8ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (4.6ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (4.3ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (8.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3774593401322905616_70150840944460 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.7ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (42.8ms) Rendered welcome/index.html.erb within layouts/application (72.7ms) Rendered shared/_header.html.erb (15.6ms) Rendered shared/_splash.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 209ms (Views: 202.9ms | ActiveRecord: 5.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:34 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:34 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:34 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:34 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:34 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:34 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:34 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:34 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:34 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:34 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:35 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:35 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:35 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:35 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:35 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:35:35 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:35:35 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:35:35 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:35:35 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:35:35 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:35:35 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:35:35 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:35:35 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:35:35 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:35:35 +0200
Started GET “/assets/fontawesome-webfont.woff2?v=4.3.0” for 127.0.0.1 at 2015-08-14 12:35:35 +0200
Started GET “/users/sign_in” for 127.0.0.1 at 2015-08-14 12:35:41 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (1.2ms) Rendered devise/sessions/new.html.erb within layouts/application (6.7ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 59ms (Views: 57.0ms | ActiveRecord: 0.0ms)
Started POST “/users/sign_in” for 127.0.0.1 at 2015-08-14 12:35:44 +0200 Processing by Devise::SessionsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"n6pXGL64+0xr2fGLmPokVn9sKJZEEOjggFUuy6WI+B0=", "user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'admin@example.com' ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mSQL (0.5ms)[0m [1mUPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1[0m [["last_sign_in_at", Fri, 14 Aug 2015 10:21:56 UTC +00:00], ["current_sign_in_at", Fri, 14 Aug 2015 10:35:44 UTC +00:00], ["sign_in_count", 6], ["updated_at", Fri, 14 Aug 2015 10:35:44 UTC +00:00]]
[1m[35m (0.6ms)[0m commit transaction
Redirected to localhost:3000/ Completed 302 Found in 81ms (ActiveRecord: 1.4ms)
Started GET “/” for 127.0.0.1 at 2015-08-14 12:35:44 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (4.3ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.7ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.5ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.6ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3774593401322905616_70150840944460 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (20.3ms) Rendered welcome/index.html.erb within layouts/application (35.1ms) [1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.2ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 49ms (Views: 45.6ms | ActiveRecord: 2.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:44 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:44 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:44 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:44 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:44 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:44 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:44 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:44 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:44 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:44 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:44 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:44 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:44 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:44 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:35:44 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:35:44 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:35:44 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:35:44 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:35:44 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:35:44 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:35:44 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:35:44 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:35:44 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:35:44 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:35:44 +0200
Started GET “/games” for 127.0.0.1 at 2015-08-14 12:37:23 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (33.0ms) Rendered games/index.html.erb within layouts/application (35.7ms) Rendered shared/_header.html.erb (1.7ms) Rendered shared/_footer.html.erb (91.9ms)
Completed 200 OK in 141ms (Views: 137.2ms | ActiveRecord: 2.9ms)
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:37:24 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 2]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35mGameCode Load (0.2ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 2]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 20]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 43]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 40]]
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 24]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 42]]
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 17]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
Rendered games/show.html.erb within layouts/application (39.9ms)
Rendered shared/_header.html.erb (2.1ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 61ms (Views: 53.2ms | ActiveRecord: 3.7ms)
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:38:05 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 2]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35mGameCode Load (0.2ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 2]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 20]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 43]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 40]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 24]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 42]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 17]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
Rendered games/show.html.erb within layouts/application (21.0ms)
Rendered shared/_header.html.erb (2.1ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 102ms (Views: 96.4ms | ActiveRecord: 2.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:06 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:06 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:06 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:06 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:06 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:06 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:06 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:06 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:06 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:06 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:06 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:06 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:06 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:06 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:06 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:06 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:06 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:06 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:06 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:06 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:06 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:06 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:06 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:06 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:06 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:38:08 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.4ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 2]]
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35mGameCode Load (0.2ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 2]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 20]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 43]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 40]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 24]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 42]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 17]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
Rendered games/show.html.erb within layouts/application (25.5ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 41ms (Views: 35.0ms | ActiveRecord: 3.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:09 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:09 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:09 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:09 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:09 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:09 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:09 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:09 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:09 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:09 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:09 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:09 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:09 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:09 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:09 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:09 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:09 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:09 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:09 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:09 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:09 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:09 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:09 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:09 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:09 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:38:32 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 2]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 2]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 20]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 43]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 40]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 24]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 42]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 17]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
Rendered games/show.html.erb within layouts/application (20.7ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 55ms (Views: 49.6ms | ActiveRecord: 2.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:32 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:32 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:32 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:32 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:32 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:32 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:32 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:32 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:32 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:32 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:32 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:32 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:32 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:32 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:38:32 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:32 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:32 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:32 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:32 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:32 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:32 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:32 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:32 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:32 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:38:32 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:39:28 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 2]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 2]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 20]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 43]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 40]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 24]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 42]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 17]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
Rendered games/show.html.erb within layouts/application (16.2ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 106ms (Views: 101.9ms | ActiveRecord: 1.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:39:28 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:39:28 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:39:28 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:39:28 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:39:28 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:39:28 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:39:28 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:39:28 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:39:28 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:39:28 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:39:28 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:39:28 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:39:28 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:39:28 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:39:28 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:39:28 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:39:28 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:39:28 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:39:28 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:39:28 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:39:28 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:39:28 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:39:28 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:39:28 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:39:28 +0200
Started GET “/” for 127.0.0.1 at 2015-08-14 12:39:31 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (10.9ms) [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (2.9ms) [1m[35mGame Load (0.7ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (10.8ms) [1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (12.4ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3774593401322905616_70150850286120 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (43.6ms) Rendered welcome/index.html.erb within layouts/application (88.8ms) [1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (8.5ms) Rendered shared/_splash.html.erb (0.7ms) Rendered shared/_footer.html.erb (53.3ms)
Completed 200 OK in 173ms (Views: 165.4ms | ActiveRecord: 5.8ms)
Started GET “/games” for 127.0.0.1 at 2015-08-14 12:39:32 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (13.3ms) Rendered games/index.html.erb within layouts/application (15.8ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 27ms (Views: 24.7ms | ActiveRecord: 1.2ms)
Started GET “/users/1” for 127.0.0.1 at 2015-08-14 12:39:36 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"1"}
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "1"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 1]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]]
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 7]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (8.4ms)
Rendered shared/_header.html.erb (4.0ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 31ms (Views: 28.6ms | ActiveRecord: 1.0ms)
Started GET “/users” for 127.0.0.1 at 2015-08-14 12:39:37 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (5.7ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.5ms)
Started GET “/games” for 127.0.0.1 at 2015-08-14 12:39:39 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (17.1ms) Rendered games/index.html.erb within layouts/application (21.0ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 34ms (Views: 31.7ms | ActiveRecord: 1.4ms)
Started GET “/users” for 127.0.0.1 at 2015-08-14 12:39:41 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (5.3ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 16ms (Views: 14.3ms | ActiveRecord: 0.5ms)
Started GET “/users/1” for 127.0.0.1 at 2015-08-14 12:39:42 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]]
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 1]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]]
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 7]]
[1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (11.5ms)
Rendered shared/_header.html.erb (3.0ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 35ms (Views: 31.6ms | ActiveRecord: 1.4ms)
Started GET “/users/1” for 127.0.0.1 at 2015-08-14 12:40:03 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 1]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]]
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 7]]
[1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (8.7ms)
Rendered shared/_header.html.erb (1.5ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 39ms (Views: 37.2ms | ActiveRecord: 0.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:04 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:04 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:04 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:04 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:04 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:04 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:04 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:04 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:04 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:04 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:04 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:04 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:04 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:04 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:04 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:04 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:04 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:04 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:04 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:04 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:04 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:04 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:04 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:04 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:04 +0200
Started GET “/users/1” for 127.0.0.1 at 2015-08-14 12:40:07 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 1]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]]
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 7]]
[1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (7.0ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 20ms (Views: 17.9ms | ActiveRecord: 0.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:07 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:07 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:07 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:07 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:07 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:07 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:07 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:07 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:07 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:07 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:07 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:07 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:07 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:07 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:07 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:07 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:07 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:07 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:07 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:07 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:07 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:07 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:07 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:07 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:07 +0200
Started GET “/games” for 127.0.0.1 at 2015-08-14 12:40:08 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.2ms) [1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.4ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (24.4ms) Rendered games/index.html.erb within layouts/application (116.9ms) Rendered shared/_header.html.erb (2.7ms) Rendered shared/_footer.html.erb (1.2ms)
Completed 200 OK in 144ms (Views: 138.6ms | ActiveRecord: 2.3ms)
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:40:10 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.6ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.3ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (27.8ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 51ms (Views: 37.7ms | ActiveRecord: 3.1ms)
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:40:19 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.3ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (19.7ms)
Rendered shared/_header.html.erb (1.3ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 100ms (Views: 94.9ms | ActiveRecord: 2.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:19 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:19 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:19 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:19 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:19 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:19 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:19 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:19 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:19 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:19 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:19 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:19 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:19 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:19 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:40:19 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:19 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:19 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:19 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:19 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:19 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:19 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:19 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:19 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:19 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:40:19 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:44:32 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (19.3ms)
Rendered shared/_header.html.erb (1.4ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 104ms (Views: 98.3ms | ActiveRecord: 2.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:44:32 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:44:32 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:44:32 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:44:32 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:44:32 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:44:32 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:44:32 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:44:32 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:44:32 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:44:32 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:44:32 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:44:32 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:44:32 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:44:32 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:44:32 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:44:32 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:44:32 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:44:32 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:44:32 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:44:32 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:44:32 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:44:32 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:44:32 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:44:32 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:44:32 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:45:41 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (66.8ms)
Rendered shared/_header.html.erb (1.4ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 146ms (Views: 141.5ms | ActiveRecord: 2.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:41 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:41 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:41 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:41 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:41 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:41 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:41 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:41 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:41 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:41 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:41 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:41 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:41 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:41 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:41 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:41 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:41 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:41 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:41 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:41 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:41 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:41 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:41 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:41 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:41 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:45:53 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (17.7ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 82ms (Views: 77.8ms | ActiveRecord: 1.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:53 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:53 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:53 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:53 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:53 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:53 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:53 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:53 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:53 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:53 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:53 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:53 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:53 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:53 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:53 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:53 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:53 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:53 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:53 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:53 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:53 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:53 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:53 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:53 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:53 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:45:58 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (16.4ms)
Rendered shared/_header.html.erb (1.6ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 82ms (Views: 78.2ms | ActiveRecord: 1.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:58 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:58 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:58 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:58 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:58 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:58 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:58 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:58 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:58 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:58 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:58 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:58 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:58 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:58 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:45:58 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:58 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:58 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:58 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:58 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:58 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:58 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:58 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:58 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:58 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:45:58 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:46:02 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (15.5ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 84ms (Views: 79.8ms | ActiveRecord: 1.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:02 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:02 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:02 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:02 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:02 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:02 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:02 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:02 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:02 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:02 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:02 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:02 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:02 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:02 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:02 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:02 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:02 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:02 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:02 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:02 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:02 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:02 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:02 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:02 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:02 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:46:23 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (14.7ms)
Rendered shared/_header.html.erb (1.4ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 84ms (Views: 80.2ms | ActiveRecord: 1.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:24 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:24 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:24 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:24 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:24 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:24 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:24 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:24 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:24 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:24 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:24 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:24 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:24 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:24 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:24 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:24 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:24 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:24 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:24 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:24 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:24 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:24 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:24 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:24 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:24 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:46:26 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (16.0ms)
Rendered shared/_header.html.erb (1.4ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 133ms (Views: 128.7ms | ActiveRecord: 1.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:27 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:27 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:27 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:27 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:27 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:27 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:27 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:27 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:27 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:27 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:27 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:27 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:27 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:27 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:27 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:27 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:27 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:27 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:27 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:27 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:27 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:27 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:27 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:27 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:27 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:46:31 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.8ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.3ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (20.7ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (1.2ms)
Completed 200 OK in 143ms (Views: 137.9ms | ActiveRecord: 2.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:31 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:31 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:31 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:31 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:31 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:31 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:31 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:31 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:31 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:31 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:31 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:31 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:31 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:31 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:31 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:31 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:31 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:31 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:31 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:31 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:31 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:31 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:31 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:31 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:31 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:46:34 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (16.4ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 134ms (Views: 129.5ms | ActiveRecord: 1.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:34 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:34 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:34 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:34 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:34 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:34 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:34 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:34 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:34 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:34 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:34 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:34 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:34 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:34 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:46:34 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:34 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:34 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:34 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:34 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:34 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:34 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:34 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:34 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:34 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:46:34 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:47:21 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (16.4ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 27ms (Views: 23.5ms | ActiveRecord: 1.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:21 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:21 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:21 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:21 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:21 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:21 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:21 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:21 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:21 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:21 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:21 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:21 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:21 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:21 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:21 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:47:21 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:47:21 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:47:21 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:47:21 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:47:21 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:47:21 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:47:21 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:47:21 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:47:21 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:47:21 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:47:59 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (15.3ms)
Rendered shared/_header.html.erb (1.3ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 88ms (Views: 84.3ms | ActiveRecord: 1.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:59 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:59 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:59 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:59 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:59 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:59 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:59 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:59 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:59 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:59 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:59 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:59 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:59 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:59 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:47:59 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:47:59 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:47:59 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:47:59 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:47:59 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:47:59 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:47:59 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:47:59 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:47:59 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:47:59 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:47:59 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:48:17 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (16.0ms)
Rendered shared/_header.html.erb (1.3ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 90ms (Views: 85.7ms | ActiveRecord: 1.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:17 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:17 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:17 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:17 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:17 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:17 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:17 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:17 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:17 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:17 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:17 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:17 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:17 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:17 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:17 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:17 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:17 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:17 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:17 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:17 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:17 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:17 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:17 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:17 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:17 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:48:32 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (14.0ms)
Rendered shared/_header.html.erb (55.2ms)
Rendered shared/_footer.html.erb (1.8ms)
Completed 200 OK in 107ms (Views: 102.2ms | ActiveRecord: 1.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:32 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:32 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:32 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:32 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:32 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:32 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:32 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:32 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:32 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:32 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:32 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:32 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:32 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:32 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:32 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:32 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:32 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:32 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:32 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:32 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:32 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:33 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:33 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:33 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:33 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:48:35 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (21.7ms)
Rendered shared/_header.html.erb (1.6ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 37ms (Views: 31.4ms | ActiveRecord: 2.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:35 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:35 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:35 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:35 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:35 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:35 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:35 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:35 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:35 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:35 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:35 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:35 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:35 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:35 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:35 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:35 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:35 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:35 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:35 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:35 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:35 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:35 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:35 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:35 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:35 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:48:57 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (13.7ms)
Rendered shared/_header.html.erb (1.3ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 49ms (Views: 44.7ms | ActiveRecord: 1.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:57 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:57 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:57 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:57 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:57 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:57 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:57 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:57 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:57 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:57 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:57 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:57 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:57 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:57 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:57 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:57 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:57 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:57 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:57 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:57 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:57 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:57 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:57 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:57 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:57 +0200
Started POST “/game_codes” for 127.0.0.1 at 2015-08-14 12:48:58 +0200 Processing by GameCodesController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"cMS4CmsSnen1YXDi4DD9uCx1mMpDIfIS1ltkS3/38VA=", "game_code"=>{"code"=>"awd", "game_id"=>"2"}, "commit"=>"add"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", "2"]]
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games"
Rendered game_codes/new.html.erb within layouts/application (3.6ms)
Rendered shared/_header.html.erb (2.4ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 23ms (Views: 18.1ms | ActiveRecord: 0.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:58 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:58 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:58 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:58 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:58 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:58 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:58 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:58 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:58 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:58 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:58 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:58 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:58 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:58 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:48:58 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:58 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:58 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:58 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:58 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:58 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:58 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:58 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:58 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:58 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:48:58 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:49:01 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (17.3ms)
Rendered shared/_header.html.erb (1.9ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 36ms (Views: 30.6ms | ActiveRecord: 2.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:01 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:01 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:01 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:01 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:01 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:01 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:01 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:01 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:01 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:01 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:01 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:01 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:01 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:01 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:01 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:01 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:01 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:01 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:01 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:01 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:01 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:01 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:01 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:01 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:01 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:49:05 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (14.7ms)
Rendered shared/_header.html.erb (1.7ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 97ms (Views: 93.2ms | ActiveRecord: 1.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:05 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:05 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:05 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:05 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:05 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:05 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:05 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:05 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:05 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:05 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:05 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:05 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:05 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:05 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:05 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:05 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:05 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:05 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:05 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:05 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:05 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:05 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:05 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:05 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:05 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:49:07 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (20.2ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 32ms (Views: 27.3ms | ActiveRecord: 2.1ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:07 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:07 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:07 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:07 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:07 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:07 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:07 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:07 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:07 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:07 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:07 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:07 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:07 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:07 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:07 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:07 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:07 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:07 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:07 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:07 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:07 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:07 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:07 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:07 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:07 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:49:13 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (20.3ms)
Rendered shared/_header.html.erb (2.9ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 57ms (Views: 51.9ms | ActiveRecord: 2.1ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:13 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:13 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:13 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:13 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:13 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:13 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:13 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:13 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:13 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:13 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:13 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:13 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:13 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:13 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:13 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:13 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:13 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:13 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:13 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:13 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:13 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:14 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:14 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:14 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:14 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:49:25 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (21.7ms)
Rendered shared/_header.html.erb (2.1ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 90ms (Views: 85.0ms | ActiveRecord: 2.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:25 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:25 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:25 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:25 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:25 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:25 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:25 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:25 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:25 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:25 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:25 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:25 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:25 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:25 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:25 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:25 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:25 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:25 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:25 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:25 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:25 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:26 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:26 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:26 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:26 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:49:27 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (16.2ms)
Rendered shared/_header.html.erb (2.9ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 32ms (Views: 27.3ms | ActiveRecord: 1.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:27 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:27 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:27 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:27 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:27 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:27 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:27 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:27 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:27 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:27 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:27 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:27 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:27 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:27 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:27 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:27 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:27 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:27 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:27 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:27 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:27 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:27 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:27 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:27 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:27 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:49:38 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (18.9ms)
Rendered shared/_header.html.erb (1.8ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 92ms (Views: 86.7ms | ActiveRecord: 1.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:39 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:39 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:39 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:39 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:39 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:39 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:39 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:39 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:39 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:39 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:39 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:39 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:39 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:39 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:49:39 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:39 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:39 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:39 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:39 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:39 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:39 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:39 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:39 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:39 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:49:39 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:50:10 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (15.4ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 135ms (Views: 131.2ms | ActiveRecord: 1.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:10 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:10 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:10 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:10 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:10 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:10 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:10 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:10 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:10 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:10 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:10 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:10 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:10 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:10 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:10 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:10 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:10 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:10 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:10 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:10 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:10 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:10 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:10 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:10 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:10 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:50:12 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (16.0ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 34ms (Views: 30.6ms | ActiveRecord: 1.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:12 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:12 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:12 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:12 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:12 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:12 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:12 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:12 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:12 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:12 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:12 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:12 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:12 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:12 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:12 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:12 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:12 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:12 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:12 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:12 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:12 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:12 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:12 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:12 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:12 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:50:17 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (76.2ms)
Rendered shared/_header.html.erb (1.5ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 145ms (Views: 139.6ms | ActiveRecord: 2.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:17 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:17 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:17 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:17 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:17 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:17 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:17 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:17 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:17 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:17 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:17 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:17 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:17 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:17 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:17 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:17 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:17 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:17 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:17 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:17 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:17 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:17 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:17 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:17 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:17 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:50:19 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (24.5ms)
Rendered shared/_header.html.erb (1.9ms)
Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 47ms (Views: 39.9ms | ActiveRecord: 2.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:19 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:19 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:19 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:19 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:19 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:19 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:19 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:19 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:19 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:19 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:19 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:19 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:19 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:19 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:19 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:19 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:19 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:19 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:19 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:19 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:19 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:19 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:19 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:19 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:19 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:50:41 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (16.2ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 189ms (Views: 184.6ms | ActiveRecord: 1.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:42 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:42 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:42 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:42 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:42 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:42 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:42 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:42 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:42 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:42 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:42 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:42 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:42 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:42 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:42 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:42 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:42 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:42 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:42 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:42 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:42 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:42 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:42 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:42 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:42 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:50:46 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (16.0ms)
Rendered shared/_header.html.erb (1.8ms)
Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 147ms (Views: 142.5ms | ActiveRecord: 1.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:46 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:46 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:46 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:46 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:46 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:46 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:46 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:46 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:46 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:46 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:46 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:46 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:46 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:46 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:46 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:46 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:46 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:46 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:46 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:46 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:46 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:46 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:46 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:46 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:46 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:50:49 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (15.1ms)
Rendered shared/_header.html.erb (1.5ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 27ms (Views: 23.1ms | ActiveRecord: 1.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:49 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:49 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:49 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:49 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:49 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:49 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:49 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:49 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:49 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:49 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:49 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:49 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:49 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:49 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:49 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:49 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:49 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:49 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:49 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:49 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:49 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:49 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:49 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:49 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:49 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:50:50 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (17.8ms)
Rendered shared/_header.html.erb (4.4ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 36ms (Views: 31.3ms | ActiveRecord: 2.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:50 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:50 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:50 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:50 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:50 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:50 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:50 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:50 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:50 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:50 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:50 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:50 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:50 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:50 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:50 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:50 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:50 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:50 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:50 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:50 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:50 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:50 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:50 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:50 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:50 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:50:52 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (14.9ms)
Rendered shared/_header.html.erb (1.7ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 31ms (Views: 27.0ms | ActiveRecord: 1.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:52 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:52 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:52 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:52 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:52 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:52 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:52 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:52 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:52 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:52 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:52 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:52 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:52 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:52 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:52 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:52 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:52 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:52 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:52 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:52 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:52 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:52 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:52 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:52 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:52 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:50:53 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (16.2ms)
Rendered shared/_header.html.erb (3.2ms)
Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 34ms (Views: 29.4ms | ActiveRecord: 1.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:53 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:53 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:53 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:53 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:53 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:53 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:53 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:53 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:53 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:53 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:53 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:53 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:53 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:53 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:53 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:53 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:53 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:53 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:53 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:54 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:54 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:54 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:54 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:54 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:54 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:50:56 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (22.8ms)
Rendered shared/_header.html.erb (1.3ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 38ms (Views: 32.8ms | ActiveRecord: 2.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:56 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:56 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:56 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:56 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:56 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:56 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:56 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:56 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:56 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:56 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:56 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:56 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:56 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:56 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:56 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:56 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:56 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:56 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:56 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:56 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:56 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:56 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:56 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:56 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:56 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:50:59 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.3ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (26.3ms)
Rendered shared/_header.html.erb (1.8ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 43ms (Views: 36.3ms | ActiveRecord: 3.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:59 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:59 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:59 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:59 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:59 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:59 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:59 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:59 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:59 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:59 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:59 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:59 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:59 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:59 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:50:59 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:59 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:59 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:59 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:59 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:59 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:59 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:59 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:59 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:59 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:50:59 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:51:10 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (14.2ms)
Rendered shared/_header.html.erb (1.9ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 29ms (Views: 25.2ms | ActiveRecord: 1.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:10 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:10 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:10 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:10 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:10 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:10 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:10 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:10 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:10 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:10 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:10 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:10 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:10 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:10 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:10 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:10 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:10 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:10 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:10 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:10 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:10 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:10 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:10 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:10 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:10 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:51:13 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (78.7ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 91ms (Views: 86.8ms | ActiveRecord: 2.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:13 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:13 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:13 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:13 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:13 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:13 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:13 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:13 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:13 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:13 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:13 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:13 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:13 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:13 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:13 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:13 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:13 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:13 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:13 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:13 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:13 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:13 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:13 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:13 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:13 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:51:23 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (16.0ms)
Rendered shared/_header.html.erb (1.3ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 32ms (Views: 27.5ms | ActiveRecord: 1.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:23 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:23 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:23 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:23 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:23 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:23 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:23 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:23 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:23 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:23 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:23 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:23 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:23 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:23 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:23 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:23 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:23 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:23 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:23 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:23 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:23 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:23 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:23 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:23 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:23 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:51:40 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (15.0ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 83ms (Views: 79.4ms | ActiveRecord: 1.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:40 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:40 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:40 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:40 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:40 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:40 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:40 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:40 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:40 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:40 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:40 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:40 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:40 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:40 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:40 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:40 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:40 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:40 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:40 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:40 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:40 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:40 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:40 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:40 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:40 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:51:41 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (25.9ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 42ms (Views: 35.7ms | ActiveRecord: 2.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:41 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:41 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:41 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:41 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:41 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:41 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:41 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:41 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:41 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:41 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:41 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:41 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:41 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:41 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:51:41 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:41 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:41 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:41 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:41 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:41 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:41 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:41 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:41 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:41 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:51:41 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:54:50 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (2.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.3ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (33.6ms)
Rendered shared/_header.html.erb (1.3ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 168ms (Views: 124.9ms | ActiveRecord: 5.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:54:51 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:54:51 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:54:51 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:54:51 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:54:51 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:54:51 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:54:51 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:54:51 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:54:51 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:54:51 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:54:51 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:54:51 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:54:51 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:54:51 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:54:51 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:54:51 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:54:51 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:54:51 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:54:51 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:54:51 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:54:51 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:54:51 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:54:51 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:54:51 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:54:51 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:55:15 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (19.1ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 114ms (Views: 109.4ms | ActiveRecord: 2.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:15 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:15 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:15 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:15 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:15 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:15 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:15 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:15 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:15 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:15 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:15 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:15 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:15 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:15 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:15 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:55:15 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:55:15 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:55:15 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:55:15 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:55:15 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:55:15 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:55:15 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:55:15 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:55:15 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:55:15 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:55:31 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (25.7ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 67ms (Views: 61.6ms | ActiveRecord: 2.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:32 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:32 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:32 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:32 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:32 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:32 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:32 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:32 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:32 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:32 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:32 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:32 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:32 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:32 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:55:32 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:55:32 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:55:32 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:55:32 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:55:32 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:55:32 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:55:32 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:55:32 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:55:32 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:55:32 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:55:32 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:56:11 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (18.2ms)
Rendered shared/_header.html.erb (1.3ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 111ms (Views: 106.8ms | ActiveRecord: 2.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:11 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:11 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:11 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:11 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:11 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:11 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:11 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:11 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:11 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:11 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:11 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:11 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:11 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:11 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:11 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:11 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:11 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:11 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:11 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:11 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:11 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:11 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:11 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:11 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:11 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:56:20 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (18.1ms)
Rendered shared/_header.html.erb (1.4ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 108ms (Views: 103.4ms | ActiveRecord: 2.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:20 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:20 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:20 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:20 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:20 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:20 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:20 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:20 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:20 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:20 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:20 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:20 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:20 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:20 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:20 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:20 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:20 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:20 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:20 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:20 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:20 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:20 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:20 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:20 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:20 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:56:24 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (18.0ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (56.5ms)
Completed 200 OK in 92ms (Views: 87.3ms | ActiveRecord: 2.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:24 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:24 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:24 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:24 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:24 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:24 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:24 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:24 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:24 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:24 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:24 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:24 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:24 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:24 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:24 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:24 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:24 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:24 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:24 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:24 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:24 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:24 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:24 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:24 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:24 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:56:54 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (17.8ms)
Rendered shared/_header.html.erb (1.4ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 107ms (Views: 102.0ms | ActiveRecord: 2.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:54 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:54 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:54 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:54 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:54 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:54 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:54 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:54 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:54 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:54 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:54 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:54 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:54 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:54 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:56:54 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:54 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:54 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:54 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:54 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:54 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:54 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:54 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:54 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:54 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:56:54 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 12:58:29 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (27.2ms)
Rendered shared/_header.html.erb (1.3ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 126ms (Views: 121.4ms | ActiveRecord: 2.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 12:58:29 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 12:58:29 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 12:58:29 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 12:58:29 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 12:58:29 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 12:58:29 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 12:58:29 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 12:58:29 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 12:58:29 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 12:58:29 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 12:58:29 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 12:58:29 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 12:58:29 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 12:58:29 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 12:58:29 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 12:58:29 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 12:58:29 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 12:58:29 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 12:58:29 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 12:58:29 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 12:58:29 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 12:58:29 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 12:58:29 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 12:58:29 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 12:58:29 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:01:57 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (18.1ms)
Rendered shared/_header.html.erb (1.4ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 110ms (Views: 105.6ms | ActiveRecord: 2.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:01:57 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:01:57 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:01:57 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:01:57 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:01:57 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:01:57 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:01:57 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:01:57 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:01:57 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:01:57 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:01:57 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:01:57 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:01:57 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:01:57 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:01:57 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:01:57 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:01:57 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:01:57 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:01:57 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:01:57 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:01:57 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:01:57 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:01:57 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:01:57 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:01:57 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:04:30 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (84.3ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 115ms (Views: 108.6ms | ActiveRecord: 3.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:30 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:30 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:30 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:30 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:30 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:30 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:30 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:30 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:30 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:30 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:30 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:30 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:30 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:30 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:30 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:30 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:30 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:30 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:30 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:30 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:30 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:30 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:30 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:30 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:30 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:04:50 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (18.8ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 56ms (Views: 51.5ms | ActiveRecord: 2.1ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:50 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:50 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:50 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:50 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:50 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:50 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:50 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:50 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:50 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:50 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:50 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:50 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:50 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:50 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:50 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:50 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:50 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:50 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:50 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:50 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:50 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:50 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:50 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:50 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:50 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:04:54 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.4ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (19.7ms)
Rendered shared/_header.html.erb (1.5ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 134ms (Views: 128.2ms | ActiveRecord: 2.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:54 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:54 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:54 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:54 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:54 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:54 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:54 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:54 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:54 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:54 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:55 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:55 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:55 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:55 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:04:55 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:55 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:55 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:55 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:55 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:55 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:55 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:55 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:55 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:55 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:04:55 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:05:04 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (17.7ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 97ms (Views: 92.4ms | ActiveRecord: 2.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:05 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:05 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:05 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:05 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:05 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:05 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:05 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:05 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:05 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:05 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:05 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:05 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:05 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:05 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:05 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:05 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:05 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:05 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:05 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:05 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:05 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:05 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:05 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:05 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:05 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:05:29 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.8ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (18.7ms)
Rendered shared/_header.html.erb (1.5ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 110ms (Views: 104.5ms | ActiveRecord: 2.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:29 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:29 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:29 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:29 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:29 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:29 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:29 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:29 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:29 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:29 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:29 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:29 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:29 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:29 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:29 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:29 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:29 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:29 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:29 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:29 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:29 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:29 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:29 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:29 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:29 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:05:35 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (19.5ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 53ms (Views: 47.7ms | ActiveRecord: 2.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:35 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:35 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:35 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:35 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:35 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:35 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:35 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:35 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:35 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:35 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:35 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:35 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:35 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:35 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:35 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:35 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:35 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:35 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:35 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:35 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:35 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:35 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:35 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:35 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:35 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:05:45 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (23.5ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 119ms (Views: 113.3ms | ActiveRecord: 2.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:46 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:46 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:46 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:46 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:46 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:46 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:46 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:46 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:46 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:46 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:46 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:46 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:46 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:46 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:46 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:46 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:46 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:46 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:46 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:46 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:46 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:46 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:46 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:46 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:46 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:05:56 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (18.1ms)
Rendered shared/_header.html.erb (1.8ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 111ms (Views: 106.5ms | ActiveRecord: 2.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:56 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:56 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:56 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:56 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:56 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:56 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:56 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:56 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:56 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:56 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:56 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:56 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:56 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:56 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:05:56 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:56 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:56 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:56 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:56 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:56 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:56 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:56 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:56 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:56 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:05:56 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:06:13 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (18.3ms)
Rendered shared/_header.html.erb (1.3ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 107ms (Views: 102.3ms | ActiveRecord: 2.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:06:13 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:06:13 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:06:13 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:06:13 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:06:13 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:06:13 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:06:13 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:06:13 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:06:13 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:06:13 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:06:13 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:06:13 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:06:13 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:06:13 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:06:13 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:06:13 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:06:13 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:06:13 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:06:13 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:06:13 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:06:13 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:06:13 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:06:13 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:06:13 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:06:13 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:07:01 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (25.4ms)
Rendered shared/_header.html.erb (1.7ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 73ms (Views: 66.9ms | ActiveRecord: 2.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:01 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:02 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:02 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:02 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:02 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:02 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:02 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:02 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:02 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:02 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:02 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:02 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:02 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:02 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:02 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:02 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:02 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:02 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:02 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:02 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:02 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:02 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:02 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:02 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:02 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:07:10 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (19.3ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 53ms (Views: 47.9ms | ActiveRecord: 2.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:10 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:10 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:10 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:10 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:10 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:10 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:10 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:10 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:10 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:10 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:10 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:10 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:10 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:10 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:10 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:10 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:10 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:10 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:10 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:10 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:10 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:10 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:10 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:10 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:10 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:07:22 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (18.2ms)
Rendered shared/_header.html.erb (4.8ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 108ms (Views: 102.5ms | ActiveRecord: 2.1ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:22 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:22 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:22 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:22 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:22 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:22 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:22 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:22 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:22 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:22 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:22 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:22 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:22 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:22 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:22 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:22 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:22 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:22 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:22 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:22 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:22 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:22 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:22 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:22 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:22 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:07:34 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (23.5ms)
Rendered shared/_header.html.erb (2.0ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 121ms (Views: 116.2ms | ActiveRecord: 2.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:34 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:34 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:34 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:34 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:34 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:34 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:34 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:34 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:34 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:34 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:34 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:34 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:34 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:34 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:34 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:34 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:34 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:34 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:34 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:34 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:34 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:34 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:34 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:34 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:34 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:07:39 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (18.5ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 100ms (Views: 95.5ms | ActiveRecord: 1.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:39 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:39 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:39 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:39 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:39 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:39 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:39 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:39 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:39 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:39 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:39 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:39 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:39 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:39 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:07:39 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:39 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:39 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:39 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:39 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:39 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:39 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:39 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:39 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:39 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:07:39 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:08:15 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (22.5ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 101ms (Views: 51.9ms | ActiveRecord: 2.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:08:15 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:08:15 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:08:15 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:08:15 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:08:15 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:08:15 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:08:15 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:08:15 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:08:15 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:08:15 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:08:15 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:08:15 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:08:15 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:08:15 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:08:15 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:08:15 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:08:15 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:08:15 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:08:15 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:08:15 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:08:15 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:08:15 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:08:15 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:08:15 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:08:15 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:09:33 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (19.1ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 166ms (Views: 160.9ms | ActiveRecord: 2.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:33 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:33 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:33 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:33 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:33 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:33 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:33 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:33 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:33 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:33 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:33 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:33 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:33 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:33 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:33 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:09:33 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:09:33 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:09:33 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:09:33 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:09:33 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:09:33 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:09:33 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:09:33 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:09:33 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:09:33 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:09:50 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (18.3ms)
Rendered shared/_header.html.erb (1.4ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 111ms (Views: 106.5ms | ActiveRecord: 2.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:50 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:50 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:50 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:50 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:50 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:50 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:50 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:50 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:50 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:50 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:50 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:50 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:50 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:50 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:09:50 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:09:50 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:09:50 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:09:50 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:09:50 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:09:50 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:09:50 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:09:50 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:09:50 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:09:50 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:09:50 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:10:06 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (17.8ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 97ms (Views: 92.7ms | ActiveRecord: 2.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:06 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:06 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:06 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:06 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:06 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:06 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:06 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:06 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:06 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:06 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:06 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:06 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:06 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:06 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:06 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:10:06 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:10:06 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:10:06 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:10:06 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:10:06 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:10:06 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:10:06 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:10:06 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:10:06 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:10:06 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:10:28 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (20.3ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 59ms (Views: 53.6ms | ActiveRecord: 2.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:28 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:28 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:28 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:28 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:28 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:28 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:28 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:28 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:28 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:28 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:28 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:28 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:28 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:28 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:10:28 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:10:28 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:10:28 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:10:28 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:10:28 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:10:28 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:10:28 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:10:28 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:10:28 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:10:28 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:10:28 +0200
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:11:02 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (20.8ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 106ms (Views: 98.4ms | ActiveRecord: 2.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:02 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:02 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:02 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:02 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:02 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:02 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:02 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:02 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:02 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:02 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:02 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:02 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:02 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:02 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:02 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:02 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:02 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:02 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:02 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:02 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:02 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:02 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:02 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:02 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:02 +0200
Started POST “/game_codes” for 127.0.0.1 at 2015-08-14 13:11:19 +0200 Processing by GameCodesController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"cMS4CmsSnen1YXDi4DD9uCx1mMpDIfIS1ltkS3/38VA=", "game_code"=>{"code"=>"adpokawpdo", "game_id"=>"2"}, "commit"=>"add"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", "2"]]
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["code", "adpokawpdo"], ["created_at", Fri, 14 Aug 2015 11:11:19 UTC +00:00], ["game_id", 2], ["updated_at", Fri, 14 Aug 2015 11:11:19 UTC +00:00], ["user_id", 1]]
[1m[35m (1.5ms)[0m commit transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
Redirected to localhost:3000/games/swords-of-master Completed 302 Found in 12ms (ActiveRecord: 2.8ms)
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:11:20 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 2]]
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35mGameCode Load (0.2ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 2]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mUser Load (0.9ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 20]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 43]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 40]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 24]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 42]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 17]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (32.5ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 50ms (Views: 44.0ms | ActiveRecord: 4.1ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:20 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:20 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:20 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:20 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:20 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:20 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:20 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:20 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:20 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:20 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:20 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:20 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:20 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:20 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:20 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:20 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:20 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:20 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:20 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:20 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:20 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:20 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:20 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:20 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:20 +0200
Started GET “/games” for 127.0.0.1 at 2015-08-14 13:11:29 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.9ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (36.7ms) Rendered games/index.html.erb within layouts/application (43.4ms) Rendered shared/_header.html.erb (4.7ms) Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 71ms (Views: 65.9ms | ActiveRecord: 3.7ms)
Started GET “/games/fight-of-fist” for 127.0.0.1 at 2015-08-14 13:11:30 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"fight-of-fist"}
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'fight-of-fist' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 3]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]]
[1m[35mGameCode Load (0.4ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 3]]
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 29]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 40]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 14]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 30]]
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 27]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 49]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 34]]
[1m[35mCACHE (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 29]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 23]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 29]]
Rendered games/show.html.erb within layouts/application (37.6ms)
Rendered shared/_header.html.erb (1.4ms)
Rendered shared/_footer.html.erb (2.3ms)
Completed 200 OK in 130ms (Views: 59.1ms | ActiveRecord: 3.4ms)
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-08-14 13:11:36 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 1]]
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]]
[1m[36mGameCode Load (0.3ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 1]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 26]]
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 31]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 38]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 46]]
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 14]]
Rendered games/show.html.erb within layouts/application (30.8ms)
Rendered shared/_header.html.erb (2.1ms)
Rendered shared/_footer.html.erb (1.1ms)
Completed 200 OK in 61ms (Views: 52.2ms | ActiveRecord: 3.3ms)
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:11:40 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
Rendered games/show.html.erb within layouts/application (38.8ms)
Rendered shared/_header.html.erb (2.2ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 62ms (Views: 55.6ms | ActiveRecord: 3.5ms)
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:11:41 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 2]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 2]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 20]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 43]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 40]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 24]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 42]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 17]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (19.6ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 33ms (Views: 27.7ms | ActiveRecord: 2.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:41 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:41 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:41 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:42 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:42 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:42 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:42 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:42 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:42 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:42 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:42 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:42 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:42 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:42 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:42 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:42 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:42 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:42 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:42 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:42 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:42 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:42 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:42 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:42 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:42 +0200
Started GET “/games” for 127.0.0.1 at 2015-08-14 13:11:45 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (102.5ms) Rendered games/index.html.erb within layouts/application (105.6ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (2.2ms)
Completed 200 OK in 125ms (Views: 121.5ms | ActiveRecord: 2.1ms)
Started GET “/games/anger-of-dark” for 127.0.0.1 at 2015-08-14 13:11:46 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"anger-of-dark"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'anger-of-dark' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 4]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 4]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 11]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 36]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 44]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 35]]
Rendered games/show.html.erb within layouts/application (10.4ms)
Rendered shared/_header.html.erb (1.3ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 23ms (Views: 19.4ms | ActiveRecord: 1.2ms)
Started GET “/games/anger-of-dark” for 127.0.0.1 at 2015-08-14 13:11:49 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"anger-of-dark"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'anger-of-dark' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 4]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 4]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 11]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 36]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 44]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 35]]
Rendered games/show.html.erb within layouts/application (11.9ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 26ms (Views: 21.8ms | ActiveRecord: 1.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:49 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:49 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:49 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:49 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:49 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:49 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:49 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:49 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:49 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:49 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:49 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:49 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:49 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:49 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:49 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:49 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:49 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:49 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:49 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:49 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:49 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:49 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:49 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:49 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:49 +0200
Started GET “/games/anger-of-dark” for 127.0.0.1 at 2015-08-14 13:11:51 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"anger-of-dark"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'anger-of-dark' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 4]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 4]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 11]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 36]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 44]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 35]]
Rendered games/show.html.erb within layouts/application (10.9ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 24ms (Views: 20.0ms | ActiveRecord: 1.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:51 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:51 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:51 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:51 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:51 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:51 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:51 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:51 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:51 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:51 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:51 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:51 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:51 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:52 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:11:52 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:52 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:52 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:52 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:52 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:52 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:52 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:52 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:52 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:52 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:11:52 +0200
Started GET “/games” for 127.0.0.1 at 2015-08-14 13:11:55 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (1.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (21.0ms) Rendered games/index.html.erb within layouts/application (24.1ms) Rendered shared/_header.html.erb (3.4ms) Rendered shared/_footer.html.erb (2.5ms)
Completed 200 OK in 46ms (Views: 42.3ms | ActiveRecord: 2.5ms)
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:11:56 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
Rendered games/show.html.erb within layouts/application (18.4ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 31ms (Views: 26.1ms | ActiveRecord: 2.2ms)
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:13:06 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.4ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 2]]
[1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35mGameCode Load (0.2ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 2]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 20]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 43]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 40]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 24]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 42]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 17]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (28.4ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 121ms (Views: 115.0ms | ActiveRecord: 3.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:06 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:06 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:06 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:06 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:06 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:06 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:06 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:06 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:06 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:06 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:06 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:06 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:06 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:06 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:06 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:13:06 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:13:06 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:13:06 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:13:06 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:13:06 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:13:06 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:13:06 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:13:06 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:13:06 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:13:06 +0200
Started GET “/games” for 127.0.0.1 at 2015-08-14 13:13:08 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (12.3ms) Rendered games/index.html.erb within layouts/application (16.5ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 34ms (Views: 31.4ms | ActiveRecord: 1.2ms)
Started GET “/games/fight-of-fist” for 127.0.0.1 at 2015-08-14 13:13:09 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"fight-of-fist"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'fight-of-fist' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 3]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 3]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 29]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 40]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 14]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 30]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 27]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 49]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 34]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 29]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 23]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 29]]
Rendered games/show.html.erb within layouts/application (57.6ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 70ms (Views: 65.7ms | ActiveRecord: 1.6ms)
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-08-14 13:13:13 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 1]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 1]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 26]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 31]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 38]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 46]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 14]]
Rendered games/show.html.erb within layouts/application (10.1ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 23ms (Views: 19.3ms | ActiveRecord: 1.3ms)
Started GET “/games/fight-of-fist” for 127.0.0.1 at 2015-08-14 13:13:48 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"fight-of-fist"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'fight-of-fist' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 3]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]]
[1m[35mGameCode Load (0.2ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 3]]
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 29]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 40]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 14]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 30]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 27]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 49]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 34]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 29]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 23]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 29]]
Rendered games/show.html.erb within layouts/application (21.7ms)
Rendered shared/_header.html.erb (1.5ms)
Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 37ms (Views: 31.9ms | ActiveRecord: 2.1ms)
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-08-14 13:13:49 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 1]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 1]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 26]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 31]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 38]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 46]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 14]]
Rendered games/show.html.erb within layouts/application (8.9ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 26ms (Views: 22.1ms | ActiveRecord: 1.1ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:49 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:49 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:49 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:49 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:49 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:49 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:49 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:49 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:49 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:49 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:49 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:49 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:49 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:49 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:13:49 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:13:49 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:13:49 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:13:49 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:13:49 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:13:49 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:13:49 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:13:49 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:13:49 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:13:49 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:13:49 +0200
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-08-14 13:14:03 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 1]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 1]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 26]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 31]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 38]]
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 46]]
[1m[35mUser Load (54.7ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 14]]
Rendered games/show.html.erb within layouts/application (68.2ms)
Rendered shared/_header.html.erb (1.9ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 106ms (Views: 47.1ms | ActiveRecord: 56.1ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:03 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:03 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:03 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:03 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:03 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:03 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:03 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:03 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:03 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:03 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:03 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:03 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:03 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:03 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:03 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:03 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:03 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:03 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:03 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:03 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:03 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:03 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:03 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:03 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:03 +0200
Started GET “/games” for 127.0.0.1 at 2015-08-14 13:14:06 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.7ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (26.6ms) Rendered games/index.html.erb within layouts/application (30.0ms) Rendered shared/_header.html.erb (2.8ms) Rendered shared/_footer.html.erb (1.6ms)
Completed 200 OK in 56ms (Views: 52.1ms | ActiveRecord: 2.5ms)
Started GET “/games/anger-of-dark” for 127.0.0.1 at 2015-08-14 13:14:09 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"anger-of-dark"}
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'anger-of-dark' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 4]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 4]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 11]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 36]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 44]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 35]]
Rendered games/show.html.erb within layouts/application (9.0ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 23ms (Views: 18.6ms | ActiveRecord: 1.2ms)
Started POST “/game_codes” for 127.0.0.1 at 2015-08-14 13:14:39 +0200 Processing by GameCodesController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"cMS4CmsSnen1YXDi4DD9uCx1mMpDIfIS1ltkS3/38VA=", "game_code"=>{"code"=>"awdawdawdpko", "game_id"=>"4"}, "commit"=>"add"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "4"]]
[1m[35m (0.1ms)[0m begin transaction
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mSQL (1.6ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "awdawdawdpko"], ["created_at", Fri, 14 Aug 2015 11:14:39 UTC +00:00], ["game_id", 4], ["updated_at", Fri, 14 Aug 2015 11:14:39 UTC +00:00], ["user_id", 1]]
[1m[36m (1.5ms)[0m [1mcommit transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 4]]
Redirected to localhost:3000/games/anger-of-dark Completed 302 Found in 14ms (ActiveRecord: 3.9ms)
Started GET “/games/anger-of-dark” for 127.0.0.1 at 2015-08-14 13:14:39 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"anger-of-dark"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'anger-of-dark' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 4]]
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]]
[1m[36mGameCode Load (0.3ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 4]]
[1m[35mUser Load (0.8ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 36]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 44]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 35]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
Rendered games/show.html.erb within layouts/application (21.7ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 40ms (Views: 33.2ms | ActiveRecord: 3.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:39 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:39 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:39 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:39 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:39 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:39 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:39 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:39 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:39 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:39 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:39 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:39 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:39 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:39 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:39 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:39 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:39 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:39 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:39 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:39 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:39 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:39 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:39 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:39 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:39 +0200
Started POST “/game_codes” for 127.0.0.1 at 2015-08-14 13:14:55 +0200 Processing by GameCodesController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"cMS4CmsSnen1YXDi4DD9uCx1mMpDIfIS1ltkS3/38VA=", "game_code"=>{"code"=>"213123123123", "game_id"=>"4"}, "commit"=>"add"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", "4"]]
[1m[35m (0.1ms)[0m begin transaction
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mSQL (0.4ms)[0m INSERT INTO "game_codes" ("code", "created_at", "game_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["code", "213123123123"], ["created_at", Fri, 14 Aug 2015 11:14:55 UTC +00:00], ["game_id", 4], ["updated_at", Fri, 14 Aug 2015 11:14:55 UTC +00:00], ["user_id", 1]]
[1m[36m (1.5ms)[0m [1mcommit transaction[0m
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 4]]
Redirected to localhost:3000/games/anger-of-dark Completed 302 Found in 9ms (ActiveRecord: 2.5ms)
Started GET “/games/anger-of-dark” for 127.0.0.1 at 2015-08-14 13:14:55 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"anger-of-dark"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'anger-of-dark' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 4]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]]
[1m[36mGameCode Load (0.4ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 4]]
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 36]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 44]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 35]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (15.0ms)
Rendered shared/_header.html.erb (1.8ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 28ms (Views: 24.2ms | ActiveRecord: 1.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:55 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:55 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:55 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:55 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:55 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:55 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:55 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:55 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:55 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:55 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:55 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:55 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:55 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:55 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:14:55 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:55 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:55 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:55 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:55 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:55 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:55 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:55 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:55 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:55 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:14:55 +0200
Started GET “/coins” for 127.0.0.1 at 2015-08-14 13:14:56 +0200 Processing by UsersController#your_coins as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Rendered users/your_coins.html.erb within layouts/application (0.5ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 14ms (Views: 11.3ms | ActiveRecord: 0.4ms)
Started GET “/games” for 127.0.0.1 at 2015-08-14 13:15:00 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (11.9ms) Rendered games/index.html.erb within layouts/application (14.6ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 25ms (Views: 23.1ms | ActiveRecord: 1.2ms)
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:15:02 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 2]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 2]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 20]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 43]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 40]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 24]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 42]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 17]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 6]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Rendered games/show.html.erb within layouts/application (15.0ms)
Rendered shared/_header.html.erb (1.3ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 72ms (Views: 68.3ms | ActiveRecord: 1.6ms)
Started GET “/games/swords-of-master/edit” for 127.0.0.1 at 2015-08-14 13:15:15 +0200 Processing by GamesController#edit as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1
Rendered games/edit.html.erb within layouts/application (6.6ms)
Rendered shared/_header.html.erb (3.5ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 27ms (Views: 23.9ms | ActiveRecord: 0.4ms)
Started GET “/games/swords-of-master” for 127.0.0.1 at 2015-08-14 13:15:30 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"swords-of-master"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'swords-of-master' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 2]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 2]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 20]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 43]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 40]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 42]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 13]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 10]]
[1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
Rendered games/show.html.erb within layouts/application (16.5ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 33ms (Views: 28.7ms | ActiveRecord: 1.9ms)
Started GET “/users/20” for 127.0.0.1 at 2015-08-14 13:15:39 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"20"}
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "20"]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 20]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 20]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 20]]
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 5]]
[1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 5]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (6.8ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.9ms)
Started GET “/users” for 127.0.0.1 at 2015-08-14 13:15:49 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (5.1ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 17ms (Views: 14.7ms | ActiveRecord: 0.5ms)
Started GET “/users/1” for 127.0.0.1 at 2015-08-14 13:15:51 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"1"}
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "1"]]
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]]
[1m[36mGameCode Exists (0.3ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 1]]
[1m[35mGameCode Load (0.2ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]]
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 7]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (19.5ms)
Rendered shared/_header.html.erb (2.0ms)
Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 116ms (Views: 112.0ms | ActiveRecord: 1.9ms)
Started GET “/games” for 127.0.0.1 at 2015-08-14 13:16:03 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (18.8ms) Rendered games/index.html.erb within layouts/application (21.4ms) Rendered shared/_header.html.erb (1.9ms) Rendered shared/_footer.html.erb (1.4ms)
Completed 200 OK in 36ms (Views: 32.7ms | ActiveRecord: 1.9ms)
Started GET “/games” for 127.0.0.1 at 2015-08-14 13:17:27 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.4ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (16.2ms) Rendered games/index.html.erb within layouts/application (20.8ms) Rendered shared/_header.html.erb (3.5ms) Rendered shared/_footer.html.erb (2.6ms)
Completed 200 OK in 38ms (Views: 35.4ms | ActiveRecord: 1.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:27 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:27 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:27 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:27 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:27 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:27 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:27 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:27 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:27 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:27 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:27 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:27 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:27 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:27 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:27 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:17:27 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:17:27 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:17:27 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:17:27 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:17:27 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:17:27 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:17:27 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:17:27 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:17:27 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:17:27 +0200
Started GET “/games” for 127.0.0.1 at 2015-08-14 13:17:29 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (57.8ms) Rendered games/index.html.erb within layouts/application (60.4ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 72ms (Views: 70.1ms | ActiveRecord: 1.4ms)
Started GET “/games” for 127.0.0.1 at 2015-08-14 13:17:31 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (1.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (36.2ms) Rendered games/index.html.erb within layouts/application (39.4ms) Rendered shared/_header.html.erb (2.3ms) Rendered shared/_footer.html.erb (3.1ms)
Completed 200 OK in 74ms (Views: 68.8ms | ActiveRecord: 4.0ms)
Started GET “/games” for 127.0.0.1 at 2015-08-14 13:17:32 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (13.2ms) Rendered games/index.html.erb within layouts/application (16.3ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 29ms (Views: 26.7ms | ActiveRecord: 1.3ms)
Started GET “/game_requests” for 127.0.0.1 at 2015-08-14 13:17:39 +0200 Processing by GameRequestsController#index as HTML
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[35mGameRequest Load (0.3ms)[0m SELECT "game_requests".* FROM "game_requests" Rendered game_requests/index.html.erb within layouts/application (4.2ms) Rendered shared/_header.html.erb (1.6ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 83ms (Views: 67.9ms | ActiveRecord: 0.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:39 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:39 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:39 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:39 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:39 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:39 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:39 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:39 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:39 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:39 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:39 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:39 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:39 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:39 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:17:39 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:17:39 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:17:39 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:17:39 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:17:39 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:17:39 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:17:39 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:17:40 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:17:40 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:17:40 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:17:40 +0200
Started GET “/game_requests” for 127.0.0.1 at 2015-08-14 13:18:27 +0200 Processing by GameRequestsController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" Rendered game_requests/index.html.erb within layouts/application (1.9ms)
Completed 500 Internal Server Error in 7ms
ActionView::Template::Error (undefined method `date_created' for #<GameRequest:0x007f9a88078378>):
22: <td><span class="badge blue"><%= request.requests %></span></td> 23: <td><%= link_to 'Edit', edit_game_request_path(request), class: 'pure-button' %></td> 24: <td><% if request.accepted == true %><span class="badge blue">YES</span><% else %><span class="badge red">NO</span><% end %></td> 25: <td><%= request.date_created %></td> 26: </tr> 27: <% end %> 28: </tbody> app/views/game_requests/index.html.erb:25:in `block in _app_views_game_requests_index_html_erb___4383064123756703511_70150841996660' app/views/game_requests/index.html.erb:19:in `each' app/views/game_requests/index.html.erb:19:in `_app_views_game_requests_index_html_erb___4383064123756703511_70150841996660' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.8ms)
Started GET “/game_requests” for 127.0.0.1 at 2015-08-14 13:18:32 +0200 Processing by GameRequestsController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" Rendered game_requests/index.html.erb within layouts/application (4.3ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 18ms (Views: 14.7ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:32 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:32 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:32 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:32 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:32 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:32 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:33 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:33 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:33 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:33 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:33 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:33 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:33 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:33 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:33 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:18:33 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:18:33 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:18:33 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:18:33 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:18:33 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:18:33 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:18:33 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:18:33 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:18:33 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:18:33 +0200
Started GET “/game_requests” for 127.0.0.1 at 2015-08-14 13:18:37 +0200 Processing by GameRequestsController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" Rendered game_requests/index.html.erb within layouts/application (1.5ms)
Completed 500 Internal Server Error in 8ms
ActionView::Template::Error (undefined method `minutes' for Wed, 24 Jun 2015 14:38:11 UTC +00:00:Time):
22: <td><span class="badge blue"><%= request.requests %></span></td> 23: <td><%= link_to 'Edit', edit_game_request_path(request), class: 'pure-button' %></td> 24: <td><% if request.accepted == true %><span class="badge blue">YES</span><% else %><span class="badge red">NO</span><% end %></td> 25: <td><%= request.created_at.minutes %></td> 26: </tr> 27: <% end %> 28: </tbody> app/views/game_requests/index.html.erb:25:in `block in _app_views_game_requests_index_html_erb___4383064123756703511_70150840880260' app/views/game_requests/index.html.erb:19:in `each' app/views/game_requests/index.html.erb:19:in `_app_views_game_requests_index_html_erb___4383064123756703511_70150840880260' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.7ms)
Started GET “/game_requests” for 127.0.0.1 at 2015-08-14 13:18:50 +0200 Processing by GameRequestsController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[35mGameRequest Load (0.3ms)[0m SELECT "game_requests".* FROM "game_requests" Rendered game_requests/index.html.erb within layouts/application (4.7ms) Rendered shared/_header.html.erb (1.6ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 22ms (Views: 17.4ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:50 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:50 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:50 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:50 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:50 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:50 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:50 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:50 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:50 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:50 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:50 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:50 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:50 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:50 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:18:50 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:18:50 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:18:50 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:18:50 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:18:50 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:18:50 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:18:50 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:18:50 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:18:50 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:18:50 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:18:50 +0200
Started GET “/game_requests” for 127.0.0.1 at 2015-08-14 13:24:54 +0200 Processing by GameRequestsController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" Rendered game_requests/index.html.erb within layouts/application (7.1ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 20ms (Views: 16.5ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:24:54 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:24:54 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:24:54 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:24:54 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:24:54 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:24:54 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:24:54 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:24:54 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:24:54 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:24:54 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:24:54 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:24:54 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:24:54 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:24:54 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:24:55 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:24:55 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:24:55 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:24:55 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:24:55 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:24:55 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:24:55 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:24:55 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:24:55 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:24:55 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:24:55 +0200
Started GET “/game_requests” for 127.0.0.1 at 2015-08-14 13:24:59 +0200 Processing by GameRequestsController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[35mGameRequest Load (0.3ms)[0m SELECT "game_requests".* FROM "game_requests" Rendered game_requests/index.html.erb within layouts/application (5.1ms) Rendered shared/_header.html.erb (4.1ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 24ms (Views: 20.0ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:24:59 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:24:59 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:00 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:00 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:00 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:00 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:00 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:00 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:00 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:00 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:00 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:00 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:00 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:00 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:00 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:00 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:00 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:00 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:00 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:00 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:00 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:00 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:00 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:00 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:00 +0200
Started GET “/game_requests” for 127.0.0.1 at 2015-08-14 13:25:07 +0200 Processing by GameRequestsController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" Rendered game_requests/index.html.erb within layouts/application (0.7ms)
Completed 500 Internal Server Error in 6ms
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:25: syntax error, unexpected tIDENTIFIER, expecting ')' …eated_at.strftime('%d.%m.%Y' at ) );@output_buffer.safe_appe… … ^):
actionpack (4.0.8) lib/action_view/template.rb:299:in `module_eval' actionpack (4.0.8) lib/action_view/template.rb:299:in `compile' actionpack (4.0.8) lib/action_view/template.rb:248:in `block in compile!' actionpack (4.0.8) lib/action_view/template.rb:236:in `synchronize' actionpack (4.0.8) lib/action_view/template.rb:236:in `compile!' actionpack (4.0.8) lib/action_view/template.rb:142:in `block in render' activesupport (4.0.8) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.8) lib/action_view/template.rb:141:in `render' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:423:in `_run__2820141707964861232__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__27001408078701018__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.1ms)
Started GET “/game_requests” for 127.0.0.1 at 2015-08-14 13:25:15 +0200 Processing by GameRequestsController#index as HTML
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[35mGameRequest Load (0.3ms)[0m SELECT "game_requests".* FROM "game_requests" Rendered game_requests/index.html.erb within layouts/application (3.2ms)
Completed 500 Internal Server Error in 8ms
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:26: unknown regexp options - tr /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:29: unknown regexp options - tabl /Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:30: syntax error, unexpected '<' </div>';@output_buffer.to_s
^
/Users/rbarisic/rails_projects/game_codes/app/views/game_requests/index.html.erb:30: unterminated regexp meets end of file):
actionpack (4.0.8) lib/action_view/template.rb:299:in `module_eval' actionpack (4.0.8) lib/action_view/template.rb:299:in `compile' actionpack (4.0.8) lib/action_view/template.rb:248:in `block in compile!' actionpack (4.0.8) lib/action_view/template.rb:236:in `synchronize' actionpack (4.0.8) lib/action_view/template.rb:236:in `compile!' actionpack (4.0.8) lib/action_view/template.rb:142:in `block in render' activesupport (4.0.8) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.8) lib/action_view/template.rb:141:in `render' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:423:in `_run__2820141707964861232__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__27001408078701018__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.7ms)
Started GET “/game_requests” for 127.0.0.1 at 2015-08-14 13:25:18 +0200 Processing by GameRequestsController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" Rendered game_requests/index.html.erb within layouts/application (5.8ms) Rendered shared/_header.html.erb (1.7ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 20ms (Views: 16.3ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:18 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:18 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:18 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:18 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:18 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:18 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:18 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:18 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:18 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:18 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:18 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:18 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:18 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:18 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:18 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:18 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:18 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:18 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:18 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:18 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:18 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:18 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:18 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:18 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:18 +0200
Started GET “/game_requests” for 127.0.0.1 at 2015-08-14 13:25:25 +0200 Processing by GameRequestsController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" Rendered game_requests/index.html.erb within layouts/application (5.5ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 20ms (Views: 16.0ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:25 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:25 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:25 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:25 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:25 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:25 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:25 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:25 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:25 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:25 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:25 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:25 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:25 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:25 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:25 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:25 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:25 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:25 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:25 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:25 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:25 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:25 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:25 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:25 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:25 +0200
Started GET “/game_requests” for 127.0.0.1 at 2015-08-14 13:25:27 +0200 Processing by GameRequestsController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" Rendered game_requests/index.html.erb within layouts/application (6.9ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 82ms (Views: 78.1ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:27 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:27 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:27 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:27 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:27 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:27 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:27 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:27 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:27 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:27 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:27 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:27 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:27 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:27 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:27 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:27 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:27 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:27 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:27 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:27 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:27 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:27 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:27 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:27 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:27 +0200
Started GET “/game_requests” for 127.0.0.1 at 2015-08-14 13:25:44 +0200 Processing by GameRequestsController#index as HTML
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" Rendered game_requests/index.html.erb within layouts/application (8.6ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 24ms (Views: 20.0ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:44 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:44 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:44 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:44 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:44 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:44 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:44 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:44 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:44 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:44 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:44 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:44 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:44 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:44 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:44 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:44 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:44 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:44 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:44 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:44 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:44 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:44 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:44 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:44 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:45 +0200
Started GET “/game_requests” for 127.0.0.1 at 2015-08-14 13:25:57 +0200 Processing by GameRequestsController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" Rendered game_requests/index.html.erb within layouts/application (67.3ms) Rendered shared/_header.html.erb (1.9ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 83ms (Views: 79.4ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:57 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:57 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:57 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:57 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:57 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:57 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:57 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:57 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:57 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:57 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:57 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:57 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:57 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:57 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:25:57 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:57 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:57 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:57 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:57 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:57 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:57 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:57 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:57 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:57 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:25:57 +0200
Started GET “/game_requests/1/edit” for 127.0.0.1 at 2015-08-14 13:26:28 +0200 Processing by GameRequestsController#edit as HTML
Parameters: {"id"=>"1"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."id" = ? LIMIT 1 [["id", "1"]]
Rendered game_requests/edit.html.erb within layouts/application (2.4ms)
Rendered shared/_header.html.erb (1.5ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 21ms (Views: 17.9ms | ActiveRecord: 0.4ms)
Started GET “/game_requests/1/edit” for 127.0.0.1 at 2015-08-14 13:26:33 +0200 Processing by GameRequestsController#edit as HTML
Parameters: {"id"=>"1"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."id" = ? LIMIT 1 [["id", "1"]]
Rendered game_requests/edit.html.erb within layouts/application (1.5ms)
Rendered shared/_header.html.erb (51.4ms)
Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 66ms (Views: 63.2ms | ActiveRecord: 0.4ms)
Started GET “/game_requests” for 127.0.0.1 at 2015-08-14 13:27:01 +0200 Processing by GameRequestsController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" Rendered game_requests/index.html.erb within layouts/application (6.3ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 20ms (Views: 16.4ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:27:01 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:27:01 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:27:01 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:27:01 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:27:01 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:27:01 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:27:01 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:27:01 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:27:01 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:27:01 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:27:01 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:27:01 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:27:01 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:27:01 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:27:01 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:27:01 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:27:01 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:27:01 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:27:01 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:27:01 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:27:01 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:27:01 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:27:01 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:27:01 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:27:01 +0200
Started GET “/game_requests” for 127.0.0.1 at 2015-08-14 13:31:09 +0200 Processing by GameRequestsController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" Rendered game_requests/index.html.erb within layouts/application (5.3ms) Rendered shared/_header.html.erb (1.9ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 21ms (Views: 16.3ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:09 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:09 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:09 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:09 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:09 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:09 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:09 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:09 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:09 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:09 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:09 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:09 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:09 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:09 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:09 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:09 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:09 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:09 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:09 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:09 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:09 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:09 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:09 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:09 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:09 +0200
Started GET “/game_requests” for 127.0.0.1 at 2015-08-14 13:31:42 +0200 Processing by GameRequestsController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" Rendered game_requests/index.html.erb within layouts/application (63.2ms)
Completed 500 Internal Server Error in 68ms
ActionView::Template::Error (undefined method `delete_game_request_path' for #<#<Class:0x007f9a87fe20d0>:0x007f9a87db1108>):
24: <td><%= link_to 'Edit', edit_game_request_path(request), class: 'pure-button' %></td>
25: <td><% if request.accepted == true %><span class="badge blue">YES</span><% else %><span class="badge red">NO</span><% end %></td>
26: <td><%= request.created_at.strftime('%d.%m.%Y at %H:%M o\'clock') %></td>
27: <td><%= link_to 'Destroy', delete_game_request_path(request) %></td>
28: </tr>
29: <% end %>
30: </tbody>
app/views/game_requests/index.html.erb:27:in `block in _app_views_game_requests_index_html_erb___4383064123756703511_70150840507860'
app/views/game_requests/index.html.erb:20:in `each'
app/views/game_requests/index.html.erb:20:in `_app_views_game_requests_index_html_erb___4383064123756703511_70150840507860'
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.8ms)
Started GET “/game_requests” for 127.0.0.1 at 2015-08-14 13:31:50 +0200 Processing by GameRequestsController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" Rendered game_requests/index.html.erb within layouts/application (8.8ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 22ms (Views: 18.6ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:51 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:51 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:51 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:51 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:51 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:51 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:51 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:51 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:51 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:51 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:51 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:51 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:51 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:51 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:51 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:51 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:51 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:51 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:51 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:51 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:51 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:51 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:51 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:51 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:51 +0200
Started GET “/game_requests” for 127.0.0.1 at 2015-08-14 13:31:55 +0200 Processing by GameRequestsController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[35mGameRequest Load (0.2ms)[0m SELECT "game_requests".* FROM "game_requests" Rendered game_requests/index.html.erb within layouts/application (7.8ms) Rendered shared/_header.html.erb (50.0ms) Rendered shared/_footer.html.erb (1.1ms)
Completed 200 OK in 73ms (Views: 68.3ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:55 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:55 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:55 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:55 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:55 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:55 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:55 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:55 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:55 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:55 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:55 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:55 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:55 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:55 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:31:55 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:55 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:55 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:55 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:55 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:55 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:55 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:55 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:55 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:55 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:31:55 +0200
Started DELETE “/game_requests/2” for 127.0.0.1 at 2015-08-14 13:31:57 +0200 Processing by GameRequestsController#destroy as HTML
Parameters: {"authenticity_token"=>"cMS4CmsSnen1YXDi4DD9uCx1mMpDIfIS1ltkS3/38VA=", "id"=>"2"}
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
Completed 500 Internal Server Error in 10ms
ActionView::MissingTemplate (Missing template game_requests/destroy, application/destroy with {:locale=>, :formats=>, :handlers=>[:erb, :builder, :raw, :ruby, :jbuilder]}. Searched in:
* "/Users/rbarisic/rails_projects/game_codes/app/views" * "/Library/Ruby/Gems/2.0.0/gems/devise-3.4.1/app/views"
):
actionpack (4.0.8) lib/action_view/path_set.rb:46:in `find' actionpack (4.0.8) lib/action_view/lookup_context.rb:122:in `find' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:35:in `determine_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:8:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:423:in `_run__2820141707964861232__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:35:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__27001408078701018__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.4ms)
Started GET “/game_requests” for 127.0.0.1 at 2015-08-14 13:32:03 +0200 Processing by GameRequestsController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests"[0m Rendered game_requests/index.html.erb within layouts/application (15.4ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 29ms (Views: 25.0ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:32:03 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:32:03 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:32:03 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:32:03 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:32:03 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:32:03 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:32:03 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:32:03 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:32:03 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:32:03 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:32:03 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:32:03 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:32:03 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:32:03 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:32:03 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:32:03 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:32:03 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:32:03 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:32:03 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:32:03 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:32:03 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:32:03 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:32:03 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:32:03 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:32:03 +0200
Started POST “/game_requests/2” for 127.0.0.1 at 2015-08-14 13:32:04 +0200
ActionController::RoutingError (No route matches [POST] “/game_requests/2”):
actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (65.1ms)
Started POST “/game_requests/2” for 127.0.0.1 at 2015-08-14 13:32:34 +0200
ActionController::RoutingError (No route matches [POST] “/game_requests/2”):
actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (47.9ms)
Started POST “/game_requests/2” for 127.0.0.1 at 2015-08-14 13:32:40 +0200
ActionController::RoutingError (No route matches [POST] “/game_requests/2”):
actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (43.1ms)
Started POST “/game_requests/1” for 127.0.0.1 at 2015-08-14 13:32:45 +0200
ActionController::RoutingError (No route matches [POST] “/game_requests/1”):
actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (42.2ms)
Started POST “/game_requests/1” for 127.0.0.1 at 2015-08-14 13:32:49 +0200
ActionController::RoutingError (No route matches [POST] “/game_requests/1”):
actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (57.6ms)
Started GET “/game_requests” for 127.0.0.1 at 2015-08-14 13:33:02 +0200 Processing by GameRequestsController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests"[0m Rendered game_requests/index.html.erb within layouts/application (7.8ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 75ms (Views: 71.9ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:02 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:02 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:02 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:02 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:02 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:02 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:02 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:02 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:02 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:02 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:02 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:02 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:02 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:02 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:02 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:02 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:02 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:02 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:02 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:02 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:02 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:02 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:02 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:02 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:02 +0200
Started GET “/game_requests” for 127.0.0.1 at 2015-08-14 13:33:10 +0200 Processing by GameRequestsController#index as HTML
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests"[0m Rendered game_requests/index.html.erb within layouts/application (7.1ms) Rendered shared/_header.html.erb (5.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 28ms (Views: 23.7ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:10 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:10 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:10 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:10 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:10 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:10 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:10 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:10 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:10 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:10 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:10 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:10 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:10 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:10 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:10 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:10 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:10 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:10 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:10 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:10 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:10 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:10 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:10 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:10 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:10 +0200
Started GET “/game_requests” for 127.0.0.1 at 2015-08-14 13:33:42 +0200 Processing by GameRequestsController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[36mGameRequest Load (0.3ms)[0m [1mSELECT "game_requests".* FROM "game_requests"[0m Rendered game_requests/index.html.erb within layouts/application (8.0ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 22ms (Views: 18.0ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:42 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:42 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:42 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:42 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:42 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:42 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:42 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:42 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:42 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:42 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:42 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:42 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:42 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:42 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:42 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:42 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:42 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:42 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:42 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:42 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:42 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:42 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:42 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:42 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:42 +0200
Started GET “/game_requests” for 127.0.0.1 at 2015-08-14 13:33:45 +0200 Processing by GameRequestsController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests"[0m Rendered game_requests/index.html.erb within layouts/application (6.9ms) Rendered shared/_header.html.erb (2.3ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 78ms (Views: 74.2ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:45 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:45 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:45 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:45 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:45 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:45 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:45 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:45 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:45 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:45 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:45 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:45 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:45 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:45 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:45 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:45 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:45 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:45 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:45 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:45 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:45 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:45 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:45 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:45 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:45 +0200
Started GET “/game_requests” for 127.0.0.1 at 2015-08-14 13:33:55 +0200 Processing by GameRequestsController#index as HTML
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests"[0m Rendered game_requests/index.html.erb within layouts/application (6.8ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.2ms)
Completed 200 OK in 27ms (Views: 22.9ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:55 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:55 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:55 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:55 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:55 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:55 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:55 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:55 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:55 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:55 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:55 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:55 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:55 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:55 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:33:55 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:55 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:55 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:55 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:55 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:55 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:55 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:55 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:55 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:55 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:33:55 +0200
Started GET “/game_requests” for 127.0.0.1 at 2015-08-14 13:34:03 +0200 Processing by GameRequestsController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[36mGameRequest Load (0.2ms)[0m [1mSELECT "game_requests".* FROM "game_requests"[0m Rendered game_requests/index.html.erb within layouts/application (18.4ms) Rendered shared/_header.html.erb (2.2ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 101ms (Views: 97.3ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:03 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:03 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:03 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:03 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:03 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:03 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:03 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:03 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:03 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:03 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:03 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:03 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:03 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:03 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:03 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:34:03 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:34:03 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:34:03 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:34:03 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:34:03 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:34:03 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:34:03 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:34:03 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:34:03 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:34:03 +0200
Started GET “/game_requests/1/edit” for 127.0.0.1 at 2015-08-14 13:34:14 +0200 Processing by GameRequestsController#edit as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."id" = ? LIMIT 1[0m [["id", "1"]]
Rendered game_requests/edit.html.erb within layouts/application (1.4ms)
Rendered shared/_header.html.erb (2.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 19ms (Views: 15.5ms | ActiveRecord: 0.4ms)
Started GET “/game_requests/1/edit” for 127.0.0.1 at 2015-08-14 13:34:18 +0200 Processing by GameRequestsController#edit as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."id" = ? LIMIT 1[0m [["id", "1"]]
Rendered game_requests/edit.html.erb within layouts/application (1.5ms)
Rendered shared/_header.html.erb (50.8ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 64ms (Views: 62.3ms | ActiveRecord: 0.2ms)
Started PATCH “/game_requests/1” for 127.0.0.1 at 2015-08-14 13:34:55 +0200 Processing by GameRequestsController#update as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"cMS4CmsSnen1YXDi4DD9uCx1mMpDIfIS1ltkS3/38VA=", "game_request"=>{"name"=>"Hello Manilla!", "creator"=>"Manilla Land", "company_url"=>"http://www.example.com/manilla_world", "cover_url"=>"", "code_length"=>"28", "description"=>"Come to Manilla Land and build a striving town consisting of cookies and rainbows."}, "commit"=>"Update Entry", "id"=>"1"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameRequest Load (0.1ms)[0m [1mSELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."id" = ? LIMIT 1[0m [["id", "1"]]
[1m[35m (0.1ms)[0m begin transaction
[1m[36mSQL (1.3ms)[0m [1mUPDATE "game_requests" SET "name" = ?, "creator" = ?, "company_url" = ?, "cover_url" = ?, "code_length" = ?, "description" = ?, "updated_at" = ? WHERE "game_requests"."id" = 1[0m [["name", "Hello Manilla!"], ["creator", "Manilla Land"], ["company_url", "http://www.example.com/manilla_world"], ["cover_url", ""], ["code_length", "28"], ["description", "Come to Manilla Land and build a striving town consisting of cookies and rainbows."], ["updated_at", Fri, 14 Aug 2015 11:34:55 UTC +00:00]]
[1m[35m (2.4ms)[0m commit transaction
Redirected to localhost:3000/game_requests/1 Completed 302 Found in 14ms (ActiveRecord: 4.0ms)
Started GET “/game_requests/1” for 127.0.0.1 at 2015-08-14 13:34:55 +0200 Processing by GameRequestsController#show as HTML
Parameters: {"id"=>"1"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mGameRequest Load (0.1ms)[0m SELECT "game_requests".* FROM "game_requests" WHERE "game_requests"."id" = ? LIMIT 1 [["id", "1"]]
Rendered game_requests/show.html.erb within layouts/application (1.0ms)
Rendered shared/_header.html.erb (2.8ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 21ms (Views: 18.5ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:55 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:55 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:55 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:55 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:55 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:55 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:55 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:55 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:55 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:55 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:55 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:55 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:55 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:55 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-14 13:34:55 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-14 13:34:55 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-14 13:34:55 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-14 13:34:55 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-14 13:34:55 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-14 13:34:55 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-14 13:34:55 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-14 13:34:55 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-14 13:34:55 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-14 13:34:55 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-14 13:34:55 +0200
Started GET “/game_requests” for 127.0.0.1 at 2015-08-14 13:34:58 +0200 Processing by GameRequestsController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
DEPRECATION WARNING: Calling find(:all) is deprecated. Please call all directly instead. (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6) DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/rbarisic/rails_projects/game_codes/app/controllers/game_requests_controller.rb:6)
[1m[35mGameRequest Load (0.3ms)[0m SELECT "game_requests".* FROM "game_requests" Rendered game_requests/index.html.erb within layouts/application (7.5ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 22ms (Views: 17.5ms | ActiveRecord: 0.5ms)
Started GET “/” for 127.0.0.1 at 2015-08-24 10:51:53 +0200
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (78.3ms) [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (2.2ms) [1m[35mGame Load (0.7ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (23.8ms) [1m[36mUser Load (4.1ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (30.4ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3285005845425621352_70248595528480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (3.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (41.2ms) Rendered welcome/index.html.erb within layouts/application (187.5ms) Rendered shared/_header.html.erb (11.5ms) Rendered shared/_splash.html.erb (0.8ms) Rendered shared/_footer.html.erb (1.4ms)
Completed 200 OK in 466ms (Views: 421.5ms | ActiveRecord: 11.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-24 10:51:54 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-24 10:51:54 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-24 10:51:54 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-24 10:51:54 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-24 10:51:54 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-24 10:51:54 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-24 10:51:54 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-24 10:51:54 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-24 10:51:54 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-24 10:51:54 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-24 10:51:54 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-24 10:51:54 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-24 10:51:54 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-24 10:51:54 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-24 10:51:54 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-24 10:51:54 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-24 10:51:54 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-24 10:51:54 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-24 10:51:54 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-24 10:51:54 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-24 10:51:54 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-24 10:51:54 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-24 10:51:54 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-24 10:51:54 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-24 10:51:54 +0200
Started GET “/assets/fontawesome-webfont.woff2?v=4.3.0” for 127.0.0.1 at 2015-08-24 10:51:54 +0200
Started GET “/” for 127.0.0.1 at 2015-08-24 10:52:11 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.7ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.7ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (9.6ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.6ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3285005845425621352_70248595528480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (1.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (31.3ms) Rendered welcome/index.html.erb within layouts/application (50.9ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (1.3ms)
Completed 200 OK in 68ms (Views: 61.9ms | ActiveRecord: 4.1ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:11 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:11 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:11 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:11 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:11 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:11 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:11 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:11 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:11 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:11 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:11 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:11 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:11 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:11 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:11 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:11 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:11 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:11 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:11 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:11 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:11 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:11 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:11 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:11 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:11 +0200
Started GET “/” for 127.0.0.1 at 2015-08-24 10:52:14 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.8ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.7ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.3ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3285005845425621352_70248595528480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (22.6ms) Rendered welcome/index.html.erb within layouts/application (34.5ms) Rendered shared/_header.html.erb (1.6ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 49ms (Views: 45.8ms | ActiveRecord: 2.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:14 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:14 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:14 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:14 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:14 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:14 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:14 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:14 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:14 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:14 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:14 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:14 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:14 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:14 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:14 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:14 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:14 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:14 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:14 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:14 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:14 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:14 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:14 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:14 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:14 +0200
Started GET “/” for 127.0.0.1 at 2015-08-24 10:52:29 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.5ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.8ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.9ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (6.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3285005845425621352_70248595528480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (36.2ms) Rendered welcome/index.html.erb within layouts/application (52.2ms) Rendered shared/_header.html.erb (1.7ms) Rendered shared/_splash.html.erb (0.4ms) Rendered shared/_footer.html.erb (1.1ms)
Completed 200 OK in 163ms (Views: 159.1ms | ActiveRecord: 2.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:29 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:29 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:29 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:29 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:29 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:29 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:29 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:29 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:29 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:29 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:29 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:29 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:29 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:30 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:30 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:30 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:30 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:30 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:30 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:30 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:30 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:30 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:30 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:30 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:30 +0200
Started GET “/” for 127.0.0.1 at 2015-08-24 10:52:54 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.5ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.6ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (4.0ms) [1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (7.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3285005845425621352_70248595528480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (25.0ms) Rendered welcome/index.html.erb within layouts/application (42.6ms) Rendered shared/_header.html.erb (2.6ms) Rendered shared/_splash.html.erb (0.6ms) Rendered shared/_footer.html.erb (3.0ms)
Completed 200 OK in 69ms (Views: 65.0ms | ActiveRecord: 2.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:54 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:54 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:54 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:54 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:54 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:54 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:54 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:54 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:54 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:54 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:54 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:54 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:54 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:54 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:54 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:54 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:54 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:54 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:54 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:54 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:54 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:54 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:54 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:54 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:54 +0200
Started GET “/” for 127.0.0.1 at 2015-08-24 10:52:55 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.1ms) [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (1.3ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (7.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (4.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3285005845425621352_70248595528480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (38.6ms) Rendered welcome/index.html.erb within layouts/application (57.7ms) Rendered shared/_header.html.erb (2.5ms) Rendered shared/_splash.html.erb (0.6ms) Rendered shared/_footer.html.erb (1.6ms)
Completed 200 OK in 80ms (Views: 74.6ms | ActiveRecord: 3.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:55 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:55 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:55 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:55 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:55 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:55 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:55 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:55 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:55 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:55 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:55 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:55 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:55 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:55 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:55 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:55 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:55 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:55 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:55 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:55 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:55 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:55 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:55 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:55 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:55 +0200
Started GET “/” for 127.0.0.1 at 2015-08-24 10:52:58 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.9ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (6.8ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.9ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.4ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (7.8ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3285005845425621352_70248595528480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (33.2ms) Rendered welcome/index.html.erb within layouts/application (55.3ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (1.2ms)
Completed 200 OK in 69ms (Views: 62.9ms | ActiveRecord: 5.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:58 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:58 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:58 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:58 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:58 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:58 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:58 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:58 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:58 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:58 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:58 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:58 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:58 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:58 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-24 10:52:58 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:58 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:58 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:58 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:58 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:58 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:58 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:58 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:58 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:58 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-24 10:52:58 +0200
Started GET “/” for 127.0.0.1 at 2015-08-24 10:53:11 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.7ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.8ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.4ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (5.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3285005845425621352_70248595528480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.8ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.6ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (29.5ms) Rendered welcome/index.html.erb within layouts/application (45.3ms) Rendered shared/_header.html.erb (2.6ms) Rendered shared/_splash.html.erb (0.7ms) Rendered shared/_footer.html.erb (1.1ms)
Completed 200 OK in 135ms (Views: 130.3ms | ActiveRecord: 4.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:11 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:11 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:11 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:11 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:11 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:11 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:11 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:11 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:11 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:11 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:11 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:11 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:11 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:11 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:11 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:11 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:11 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:11 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:11 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:11 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:11 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:11 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:11 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:11 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:11 +0200
Started GET “/” for 127.0.0.1 at 2015-08-24 10:53:28 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.6ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (5.2ms) [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (2.5ms) [1m[35mGame Load (0.5ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (5.3ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3285005845425621352_70248595528480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (40.6ms) Rendered welcome/index.html.erb within layouts/application (62.0ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 77ms (Views: 71.5ms | ActiveRecord: 4.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:28 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:28 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:28 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:28 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:28 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:28 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:28 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:28 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:28 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:28 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:28 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:28 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:28 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:28 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:28 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:28 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:28 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:28 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:28 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:28 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:28 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:28 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:28 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:28 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:28 +0200
Started GET “/” for 127.0.0.1 at 2015-08-24 10:53:37 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.9ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.8ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.1ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3285005845425621352_70248595528480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (25.0ms) Rendered welcome/index.html.erb within layouts/application (38.4ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 54ms (Views: 50.7ms | ActiveRecord: 2.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:37 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:37 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:37 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:37 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:37 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:37 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:37 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:37 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:37 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:37 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:37 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:37 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:37 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:37 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:37 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:37 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:37 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:37 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:37 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:37 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:37 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:37 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:37 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:37 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:37 +0200
Started GET “/” for 127.0.0.1 at 2015-08-24 10:53:45 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.7ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (6.4ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.9ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.6ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.7ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3285005845425621352_70248595528480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (26.6ms) Rendered welcome/index.html.erb within layouts/application (43.7ms) Rendered shared/_header.html.erb (1.9ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 58ms (Views: 53.6ms | ActiveRecord: 3.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:45 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:45 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:45 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:45 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:45 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:45 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:45 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:45 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:45 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:45 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:45 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:45 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:45 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:45 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:45 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:45 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:45 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:45 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:45 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:45 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:45 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:45 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:45 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:45 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:45 +0200
Started GET “/” for 127.0.0.1 at 2015-08-24 10:53:48 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.7ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.7ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.0ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (7.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3285005845425621352_70248595528480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (26.6ms) Rendered welcome/index.html.erb within layouts/application (43.4ms) Rendered shared/_header.html.erb (1.6ms) Rendered shared/_splash.html.erb (0.3ms) Rendered shared/_footer.html.erb (1.1ms)
Completed 200 OK in 122ms (Views: 116.3ms | ActiveRecord: 3.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:48 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:48 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:48 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:48 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:48 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:48 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:48 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:48 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:48 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:48 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:48 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:48 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:48 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:48 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-24 10:53:48 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:48 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:48 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:48 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:48 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:48 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:48 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:48 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:48 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:48 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-24 10:53:48 +0200
Started GET “/” for 127.0.0.1 at 2015-08-24 10:55:17 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (6.9ms) [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.2ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (3.1ms) [1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (9.7ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3285005845425621352_70248595528480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (19.3ms) Rendered welcome/index.html.erb within layouts/application (46.4ms) Rendered shared/_header.html.erb (3.0ms) Rendered shared/_splash.html.erb (0.3ms) Rendered shared/_footer.html.erb (1.8ms)
Completed 200 OK in 66ms (Views: 61.7ms | ActiveRecord: 2.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:17 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:17 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:17 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:18 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:18 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:18 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:18 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:18 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:18 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:18 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:18 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:18 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:18 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:18 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:18 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:18 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:18 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:18 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:18 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:18 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:18 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:18 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:18 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:18 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:18 +0200
Started GET “/” for 127.0.0.1 at 2015-08-24 10:55:37 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.8ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.2ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.7ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.1ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.6ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3285005845425621352_70248595528480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (20.5ms) Rendered welcome/index.html.erb within layouts/application (32.6ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (1.3ms)
Completed 200 OK in 46ms (Views: 42.0ms | ActiveRecord: 3.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:37 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:37 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:37 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:37 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:37 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:37 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:37 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:38 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:38 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:38 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:38 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:38 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:38 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:38 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:38 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:38 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:38 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:38 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:38 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:38 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:38 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:38 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:38 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:38 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:38 +0200
Started GET “/” for 127.0.0.1 at 2015-08-24 10:55:42 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.5ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.7ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (3.8ms) [1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (8.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3285005845425621352_70248595528480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (30.7ms) Rendered welcome/index.html.erb within layouts/application (49.1ms) Rendered shared/_header.html.erb (3.4ms) Rendered shared/_splash.html.erb (0.4ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 76ms (Views: 70.8ms | ActiveRecord: 3.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:42 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:42 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:42 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:42 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:42 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:42 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:42 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:42 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:42 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:42 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:42 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:42 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:42 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:42 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-24 10:55:42 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:42 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:42 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:42 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:42 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:42 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:42 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:42 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:42 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:42 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-24 10:55:43 +0200
Started GET “/” for 127.0.0.1 at 2015-08-24 10:56:07 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.6ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (9.5ms) [1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (2.5ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (7.4ms) [1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (14.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3285005845425621352_70248595528480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (1.6ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (25.6ms) Rendered welcome/index.html.erb within layouts/application (64.6ms) Rendered shared/_header.html.erb (2.0ms) Rendered shared/_splash.html.erb (0.5ms) Rendered shared/_footer.html.erb (4.1ms)
Completed 200 OK in 135ms (Views: 128.1ms | ActiveRecord: 5.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:07 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:07 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:07 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:07 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:07 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:07 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:07 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:07 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:07 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:07 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:07 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:07 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:07 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:07 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:07 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:07 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:07 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:07 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:07 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:07 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:07 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:07 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:07 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:07 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:07 +0200
Started GET “/” for 127.0.0.1 at 2015-08-24 10:56:11 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (5.5ms) [1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (3.7ms) [1m[35mGame Load (0.6ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (7.9ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (6.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3285005845425621352_70248595528480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (22.5ms) Rendered welcome/index.html.erb within layouts/application (53.4ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_splash.html.erb (0.4ms) Rendered shared/_footer.html.erb (2.4ms)
Completed 200 OK in 74ms (Views: 68.8ms | ActiveRecord: 3.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:12 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:12 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:12 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:12 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:12 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:12 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:12 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:12 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:12 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:12 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:12 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:12 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:12 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:12 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:12 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:12 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:12 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:12 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:12 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:12 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:12 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:12 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:12 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:12 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:12 +0200
Started GET “/” for 127.0.0.1 at 2015-08-24 10:56:43 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.2ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.7ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.4ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.7ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3285005845425621352_70248595528480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (44.2ms) Rendered welcome/index.html.erb within layouts/application (57.1ms) Rendered shared/_header.html.erb (2.3ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (1.3ms)
Completed 200 OK in 80ms (Views: 74.6ms | ActiveRecord: 3.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:43 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:43 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:43 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:43 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:43 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:43 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:43 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:43 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:43 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:43 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:43 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:43 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:43 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:43 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:43 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:43 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:43 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:43 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:43 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:43 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:43 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:43 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:43 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:43 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:43 +0200
Started GET “/” for 127.0.0.1 at 2015-08-24 10:56:50 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.5ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (4.3ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.8ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.8ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (3.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3285005845425621352_70248595528480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (22.4ms) Rendered welcome/index.html.erb within layouts/application (36.2ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (1.1ms)
Completed 200 OK in 48ms (Views: 44.8ms | ActiveRecord: 3.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:50 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:50 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:50 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:50 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:50 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:50 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:50 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:50 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:50 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:50 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:50 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:50 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:50 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:50 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:50 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:50 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:50 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:50 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:50 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:50 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:50 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:50 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:50 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:50 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:50 +0200
Started GET “/” for 127.0.0.1 at 2015-08-24 10:56:59 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.2ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.6ms) [1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.5ms) [1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (13.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3285005845425621352_70248595528480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (1.0ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (30.8ms) Rendered welcome/index.html.erb within layouts/application (52.6ms) Rendered shared/_header.html.erb (1.6ms) Rendered shared/_splash.html.erb (0.4ms) Rendered shared/_footer.html.erb (1.1ms)
Completed 200 OK in 133ms (Views: 127.6ms | ActiveRecord: 4.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:59 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:59 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:59 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:59 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:59 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:59 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:59 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:59 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:59 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:59 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:59 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:59 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:59 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:59 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-24 10:56:59 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:59 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:59 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:59 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:59 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:59 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:59 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:59 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:59 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:59 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-24 10:56:59 +0200
Started GET “/help” for 127.0.0.1 at 2015-08-24 10:57:01 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (0.8ms) Rendered shared/_header.html.erb (2.3ms) Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.0ms)
Started GET “/help” for 127.0.0.1 at 2015-08-24 10:57:19 +0200 Processing by WelcomeController#help as HTML
Rendered welcome/help.html.erb within layouts/application (2.4ms) Rendered shared/_header.html.erb (1.9ms) Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 86ms (Views: 84.1ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-24 10:57:19 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-24 10:57:19 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-24 10:57:19 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-24 10:57:19 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-24 10:57:19 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-24 10:57:19 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-24 10:57:19 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-24 10:57:19 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-24 10:57:19 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-24 10:57:19 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-24 10:57:19 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-24 10:57:19 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-24 10:57:19 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-24 10:57:19 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-24 10:57:19 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-24 10:57:19 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-24 10:57:19 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-24 10:57:19 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-24 10:57:19 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-24 10:57:19 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-24 10:57:19 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-24 10:57:19 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-24 10:57:19 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-24 10:57:19 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-24 10:57:19 +0200
Started GET “/” for 127.0.0.1 at 2015-08-24 10:57:27 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (3.1ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.3ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (3.3ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (6.4ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3285005845425621352_70248600491120 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (24.4ms) Rendered welcome/index.html.erb within layouts/application (43.9ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_splash.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 57ms (Views: 53.7ms | ActiveRecord: 2.7ms)
Started GET “/users/sign_in” for 127.0.0.1 at 2015-08-24 10:57:30 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (1.5ms) Rendered devise/sessions/new.html.erb within layouts/application (62.1ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 76ms (Views: 73.4ms | ActiveRecord: 0.0ms)
Started GET “/users” for 127.0.0.1 at 2015-08-24 10:57:32 +0200 Processing by UsersController#index as HTML Completed 401 Unauthorized in 1ms
Started GET “/users/sign_in” for 127.0.0.1 at 2015-08-24 10:57:32 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (0.9ms) Rendered devise/sessions/new.html.erb within layouts/application (4.3ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.0ms)
Started GET “/games” for 127.0.0.1 at 2015-08-24 10:57:32 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.3ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (15.7ms) Rendered games/index.html.erb within layouts/application (21.3ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (43.4ms)
Completed 200 OK in 77ms (Views: 74.1ms | ActiveRecord: 1.7ms)
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-08-24 10:57:38 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[36mGame Load (1.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mGameCode Exists (0.3ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1 [["game_id", 1]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]]
[1m[35mGameCode Load (1.0ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0 [["game_id", 1]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 26]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 31]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 38]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 46]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 14]]
Rendered games/show.html.erb within layouts/application (23.1ms)
Rendered shared/_header.html.erb (0.9ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 59ms (Views: 34.6ms | ActiveRecord: 3.0ms)
Started GET “/” for 127.0.0.1 at 2015-08-24 11:03:31 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.5ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.7ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.8ms) [1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (8.4ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3285005845425621352_70248595528480 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (20.2ms) Rendered welcome/index.html.erb within layouts/application (37.5ms) Rendered shared/_header.html.erb (2.0ms) Rendered shared/_splash.html.erb (0.4ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 53ms (Views: 49.7ms | ActiveRecord: 2.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-08-24 11:03:31 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-08-24 11:03:31 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-08-24 11:03:31 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-08-24 11:03:31 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-08-24 11:03:31 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-08-24 11:03:31 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-08-24 11:03:31 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-08-24 11:03:31 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-08-24 11:03:31 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-08-24 11:03:31 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-08-24 11:03:31 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-08-24 11:03:31 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-08-24 11:03:31 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-08-24 11:03:31 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-08-24 11:03:31 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-08-24 11:03:31 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-08-24 11:03:31 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-08-24 11:03:31 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-08-24 11:03:31 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-08-24 11:03:31 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-08-24 11:03:31 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-08-24 11:03:31 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-08-24 11:03:31 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-08-24 11:03:31 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-08-24 11:03:31 +0200
Started GET “/assets/fontawesome-webfont.woff2?v=4.3.0” for 127.0.0.1 at 2015-08-24 11:03:32 +0200
Started GET “/” for 127.0.0.1 at 2015-09-10 14:03:10 +0200
[1m[36mActiveRecord::SchemaMigration Load (0.7ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.5ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (32.2ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.4ms) [1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (8.2ms) [1m[36mUser Load (1.1ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (53.9ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___536453388460758653_70134169285040 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (2.6ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.7ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (52.7ms) Rendered welcome/index.html.erb within layouts/application (158.9ms) Rendered shared/_header.html.erb (9.5ms) Rendered shared/_splash.html.erb (1.7ms) Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 372ms (Views: 336.4ms | ActiveRecord: 8.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:11 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:11 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:11 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:11 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:11 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:11 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:11 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:11 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:11 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:11 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:11 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:11 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:11 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:11 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:11 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:11 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:11 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:11 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:11 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:11 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:11 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:11 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:11 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:11 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:11 +0200
Started GET “/assets/fontawesome-webfont.woff2?v=4.3.0” for 127.0.0.1 at 2015-09-10 14:03:11 +0200
Started GET “/users/sign_in” for 127.0.0.1 at 2015-09-10 14:03:23 +0200 Processing by Devise::SessionsController#new as HTML
Rendered devise/shared/_links.html.erb (5.3ms) Rendered devise/sessions/new.html.erb within layouts/application (15.5ms) Rendered shared/_header.html.erb (2.2ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 42ms (Views: 39.0ms | ActiveRecord: 0.0ms)
Started POST “/users/sign_in” for 127.0.0.1 at 2015-09-10 14:03:25 +0200 Processing by Devise::SessionsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"BN0KevDwqYJINJ7/1OsrJ/UhQvUs5igq4eSYc3wbWHg=", "user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"}
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'admin@example.com' ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.3ms)[0m begin transaction
[1m[36mSQL (0.6ms)[0m [1mUPDATE "users" SET "remember_created_at" = ?, "updated_at" = ? WHERE "users"."id" = 1[0m [["remember_created_at", Thu, 10 Sep 2015 12:03:25 UTC +00:00], ["updated_at", Thu, 10 Sep 2015 12:03:25 UTC +00:00]]
[1m[35m (0.7ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mSQL (0.7ms)[0m UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 14 Aug 2015 10:35:44 UTC +00:00], ["current_sign_in_at", Thu, 10 Sep 2015 12:03:25 UTC +00:00], ["sign_in_count", 7], ["updated_at", Thu, 10 Sep 2015 12:03:25 UTC +00:00]]
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
Redirected to localhost:3000/ Completed 302 Found in 98ms (ActiveRecord: 3.5ms)
Started GET “/” for 127.0.0.1 at 2015-09-10 14:03:25 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.9ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.7ms) [1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.7ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (4.2ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___536453388460758653_70134169285040 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (20.4ms) Rendered welcome/index.html.erb within layouts/application (33.7ms) [1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (8.3ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 114ms (Views: 110.0ms | ActiveRecord: 2.8ms)
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:25 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:25 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:25 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:25 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:25 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:25 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:25 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:25 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:25 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:25 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:25 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:25 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:25 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:25 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:25 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:25 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:25 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:25 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:25 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:25 +0200
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:25 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:25 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:25 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:25 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:25 +0200
Started GET “/” for 127.0.0.1 at 2015-09-10 14:03:29 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.4ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.8ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.7ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (4.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___536453388460758653_70134169285040 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (25.1ms) Rendered welcome/index.html.erb within layouts/application (38.2ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (2.4ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 51ms (Views: 47.3ms | ActiveRecord: 3.1ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:29 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:29 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:29 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:29 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:29 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:29 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:29 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:29 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:29 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:29 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:29 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:29 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:29 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:29 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:03:29 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:29 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:29 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:29 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:29 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:29 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:29 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:29 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:29 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:29 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:03:29 +0200
Started GET “/coins” for 127.0.0.1 at 2015-09-10 14:03:30 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (1.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]] Rendered users/your_coins.html.erb within layouts/application (0.9ms) Rendered shared/_header.html.erb (7.6ms) Rendered shared/_footer.html.erb (1.1ms)
Completed 200 OK in 36ms (Views: 24.1ms | ActiveRecord: 2.5ms)
Started GET “/games” for 127.0.0.1 at 2015-09-10 14:03:40 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.6ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (17.5ms) Rendered games/index.html.erb within layouts/application (25.1ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (38.6ms)
Completed 200 OK in 78ms (Views: 73.7ms | ActiveRecord: 2.0ms)
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-09-10 14:03:54 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[36mGame Load (1.4ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.3ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 1]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]]
[1m[36mGameCode Load (1.3ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 1]]
[1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 26]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 31]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 38]]
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 46]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 14]]
Rendered games/show.html.erb within layouts/application (54.6ms)
Rendered shared/_header.html.erb (1.7ms)
Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 93ms (Views: 69.2ms | ActiveRecord: 5.2ms)
Started GET “/games/spirols-of-doom” for 127.0.0.1 at 2015-09-10 14:04:04 +0200 Processing by GamesController#show as HTML
Parameters: {"id"=>"spirols-of-doom"}
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."slug" = 'spirols-of-doom' ORDER BY "games"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 1[0m [["game_id", 1]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."game_id" = ? LIMIT 20 OFFSET 0[0m [["game_id", 1]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 26]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 31]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 38]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 46]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 14]]
Rendered games/show.html.erb within layouts/application (10.1ms)
Rendered shared/_header.html.erb (1.3ms)
Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 25ms (Views: 20.7ms | ActiveRecord: 1.2ms)
Started GET “/” for 127.0.0.1 at 2015-09-10 14:04:13 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.8ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (1.2ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.1ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (4.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___536453388460758653_70134198935080 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (68.2ms) Rendered welcome/index.html.erb within layouts/application (83.7ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.2ms) Rendered shared/_splash.html.erb (0.4ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 97ms (Views: 94.2ms | ActiveRecord: 2.2ms)
Started GET “/users/1” for 127.0.0.1 at 2015-09-10 14:04:25 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"1"}
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "1"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]]
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 1]]
[1m[35mGameCode Load (0.2ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]]
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 7]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (11.3ms)
Rendered shared/_header.html.erb (2.2ms)
Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 32ms (Views: 29.1ms | ActiveRecord: 1.2ms)
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Migrating to AddAvatarToUser (20150910120450)
[1m[35m (0.1ms)[0m begin transaction
[1m[36m (0.6ms)[0m [1mALTER TABLE "users" ADD "avatar" blob[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150910120450"]]
[1m[36m (2.1ms)[0m [1mcommit transaction[0m
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
Started GET “/users/1” for 127.0.0.1 at 2015-09-10 14:05:12 +0200
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
Processing by UsersController#show as HTML
Parameters: {"id"=>"1"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "1"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]]
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 1]]
[1m[35mGameCode Load (0.2ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]]
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 7]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (35.3ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 115ms (Views: 45.1ms | ActiveRecord: 2.3ms)
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:05:13 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:05:13 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:05:13 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:05:13 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:05:13 +0200
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:05:13 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:05:13 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:05:13 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:05:13 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:05:13 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:05:13 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:05:13 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:05:13 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:05:13 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:05:13 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:05:13 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:05:13 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:05:13 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:05:13 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:05:13 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:05:13 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:05:13 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:05:13 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:05:13 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:05:13 +0200
Started GET “/users/1” for 127.0.0.1 at 2015-09-10 14:05:21 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]]
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 1]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]]
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 7]]
[1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (18.2ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 42ms (Views: 36.7ms | ActiveRecord: 1.6ms)
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:05:23 +0200 Processing by Devise::RegistrationsController#edit as
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered devise/registrations/edit.html.erb within layouts/application (9.7ms) Rendered shared/_header.html.erb (3.0ms) Rendered shared/_footer.html.erb (2.3ms)
Completed 200 OK in 44ms (Views: 41.2ms | ActiveRecord: 0.2ms)
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:06:09 +0200 Processing by Devise::RegistrationsController#edit as
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered devise/registrations/edit.html.erb within layouts/application (2.9ms) Rendered shared/_header.html.erb (4.7ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 35ms (Views: 32.7ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:09 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:09 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:09 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:09 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:09 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:09 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:09 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:09 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:09 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:09 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:09 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:09 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:09 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:09 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:09 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:09 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:09 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:09 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:09 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:09 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:09 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:09 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:09 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:09 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:09 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:06:13 +0200 Processing by Devise::RegistrationsController#edit as
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered devise/registrations/edit.html.erb within layouts/application (2.5ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 22ms (Views: 19.1ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:13 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:13 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:13 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:13 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:13 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:13 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:13 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:13 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:13 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:13 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:13 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:13 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:13 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:13 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:13 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:13 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:13 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:13 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:13 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:13 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:13 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:13 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:13 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:13 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:13 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:06:39 +0200 Processing by Devise::RegistrationsController#edit as
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered devise/registrations/edit.html.erb within layouts/application (2.9ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 22ms (Views: 19.0ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:39 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:39 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:39 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:39 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:39 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:39 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:39 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:39 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:39 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:39 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:39 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:39 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:39 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:39 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:06:39 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:39 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:39 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:39 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:39 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:39 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:39 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:39 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:39 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:39 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:06:39 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:07:00 +0200 Processing by Devise::RegistrationsController#edit as
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered devise/registrations/edit.html.erb within layouts/application (2.9ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 23ms (Views: 21.2ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:07:00 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:07:00 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:07:00 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:07:00 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:07:00 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:07:00 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:07:00 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:07:00 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:07:00 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:07:00 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:07:00 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:07:00 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:07:00 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:07:00 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:07:00 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:07:00 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:07:00 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:07:00 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:07:00 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:07:00 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:07:00 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:07:00 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:07:00 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:07:00 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:07:00 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:08:02 +0200 Processing by Devise::RegistrationsController#edit as
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered devise/registrations/edit.html.erb within layouts/application (9.9ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (1.3ms)
Completed 200 OK in 42ms (Views: 35.1ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:02 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:02 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:02 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:02 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:02 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:02 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:02 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:03 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:03 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:03 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:03 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:03 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:03 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:03 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:03 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:03 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:03 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:03 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:03 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:03 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:03 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:03 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:03 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:03 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:03 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:08:08 +0200 Processing by Devise::RegistrationsController#edit as
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered devise/registrations/edit.html.erb within layouts/application (4.9ms) Rendered shared/_header.html.erb (3.5ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 42ms (Views: 39.8ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:08 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:08 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:08 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:08 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:08 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:08 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:08 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:08 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:08 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:08 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:08 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:08 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:08 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:08 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:08 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:08 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:08 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:08 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:08 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:08 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:08 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:08 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:08 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:08 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:08 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:08:26 +0200 Processing by Devise::RegistrationsController#edit as
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered devise/registrations/edit.html.erb within layouts/application (5.2ms) Rendered shared/_header.html.erb (4.3ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 32ms (Views: 30.2ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:26 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:26 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:26 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:26 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:26 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:26 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:26 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:26 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:26 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:26 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:26 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:26 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:26 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:26 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:26 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:26 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:26 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:26 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:26 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:26 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:26 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:26 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:26 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:26 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:26 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:08:34 +0200 Processing by Devise::RegistrationsController#edit as
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered devise/registrations/edit.html.erb within layouts/application (4.9ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 31ms (Views: 26.1ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:34 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:34 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:34 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:34 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:34 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:34 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:34 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:34 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:34 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:34 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:34 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:34 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:34 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:34 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:08:34 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:34 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:34 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:34 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:34 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:34 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:34 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:34 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:34 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:34 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:08:34 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:09:01 +0200 Processing by Devise::RegistrationsController#edit as
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered devise/registrations/edit.html.erb within layouts/application (2.3ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 115ms (Views: 112.5ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:01 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:01 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:01 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:01 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:01 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:01 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:01 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:01 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:01 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:01 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:01 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:01 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:01 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:01 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:01 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:01 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:01 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:01 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:01 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:01 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:01 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:01 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:01 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:01 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:01 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:09:05 +0200 Processing by Devise::RegistrationsController#edit as
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered devise/registrations/edit.html.erb within layouts/application (2.3ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 149ms (Views: 145.0ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:05 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:05 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:05 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:05 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:05 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:05 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:05 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:05 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:05 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:05 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:05 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:05 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:05 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:05 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:05 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:05 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:05 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:05 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:05 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:05 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:05 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:05 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:05 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:05 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:05 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:09:12 +0200 Processing by Devise::RegistrationsController#edit as
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered devise/registrations/edit.html.erb within layouts/application (1.9ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 143ms (Views: 141.2ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:13 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:13 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:13 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:13 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:13 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:13 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:13 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:13 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:13 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:13 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:13 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:13 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:13 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:13 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:13 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:13 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:13 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:13 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:13 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:13 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:13 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:13 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:13 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:13 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:13 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:09:18 +0200 Processing by Devise::RegistrationsController#edit as
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered devise/registrations/edit.html.erb within layouts/application (2.1ms) Rendered shared/_header.html.erb (1.8ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 140ms (Views: 137.9ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:18 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:18 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:18 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:18 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:18 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:18 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:18 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:18 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:18 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:18 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:18 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:18 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:18 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:18 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:18 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:18 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:18 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:18 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:18 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:18 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:18 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:18 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:18 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:18 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:18 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:09:38 +0200 Processing by Devise::RegistrationsController#edit as
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered devise/registrations/edit.html.erb within layouts/application (4.8ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 30ms (Views: 27.4ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:38 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:38 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:38 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:38 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:38 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:38 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:38 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:38 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:38 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:38 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:38 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:38 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:38 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:38 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:38 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:38 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:38 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:38 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:38 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:38 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:38 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:38 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:38 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:38 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:38 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:09:43 +0200 Processing by Devise::RegistrationsController#edit as
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered devise/registrations/edit.html.erb within layouts/application (2.8ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 25ms (Views: 22.7ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:43 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:43 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:43 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:43 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:43 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:43 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:43 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:43 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:43 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:43 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:43 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:43 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:43 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:43 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:43 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:43 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:43 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:43 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:43 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:43 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:43 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:43 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:43 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:43 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:43 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:09:47 +0200 Processing by Devise::RegistrationsController#edit as
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered devise/registrations/edit.html.erb within layouts/application (3.1ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 19ms (Views: 17.1ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:47 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:48 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:48 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:48 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:48 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:48 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:48 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:48 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:48 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:48 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:48 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:48 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:48 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:48 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:48 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:48 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:48 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:48 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:48 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:48 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:48 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:48 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:48 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:48 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:48 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:09:57 +0200 Processing by Devise::RegistrationsController#edit as
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered devise/registrations/edit.html.erb within layouts/application (3.0ms) Rendered shared/_header.html.erb (2.3ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 86ms (Views: 83.4ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:57 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:57 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:57 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:57 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:57 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:57 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:57 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:57 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:57 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:57 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:57 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:57 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:57 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:57 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:09:57 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:57 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:57 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:57 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:57 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:57 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:57 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:57 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:57 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:57 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:09:57 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:10:01 +0200 Processing by Devise::RegistrationsController#edit as
[1m[35mUser Load (1.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered devise/registrations/edit.html.erb within layouts/application (2.8ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 36ms (Views: 23.6ms | ActiveRecord: 1.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:01 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:01 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:01 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:01 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:01 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:01 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:01 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:01 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:01 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:01 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:01 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:01 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:01 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:01 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:01 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:01 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:01 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:01 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:01 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:01 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:01 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:01 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:01 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:01 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:01 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:10:15 +0200 Processing by Devise::RegistrationsController#edit as
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered devise/registrations/edit.html.erb within layouts/application (2.7ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 25ms (Views: 23.0ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:15 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:15 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:15 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:15 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:15 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:15 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:15 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:15 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:15 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:15 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:15 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:15 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:15 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:15 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:15 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:15 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:15 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:15 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:15 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:15 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:15 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:15 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:15 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:15 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:15 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:10:16 +0200 Processing by Devise::RegistrationsController#edit as
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered devise/registrations/edit.html.erb within layouts/application (5.4ms) Rendered shared/_header.html.erb (3.6ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 32ms (Views: 30.2ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:16 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:16 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:16 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:16 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:16 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:16 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:16 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:16 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:16 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:16 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:16 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:16 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:16 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:16 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:16 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:16 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:16 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:16 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:16 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:16 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:16 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:16 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:16 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:16 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:16 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:10:20 +0200 Processing by Devise::RegistrationsController#edit as
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered devise/registrations/edit.html.erb within layouts/application (3.1ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (1.2ms)
Completed 200 OK in 26ms (Views: 23.0ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:20 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:20 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:20 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:20 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:20 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:20 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:20 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:20 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:20 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:20 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:21 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:21 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:21 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:21 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:21 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:21 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:21 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:21 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:21 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:21 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:21 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:21 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:21 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:21 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:21 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:10:27 +0200 Processing by Devise::RegistrationsController#edit as
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered devise/registrations/edit.html.erb within layouts/application (57.7ms) Rendered shared/_header.html.erb (2.2ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 81ms (Views: 78.4ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:27 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:27 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:27 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:27 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:27 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:27 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:27 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:27 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:27 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:27 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:27 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:27 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:27 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:27 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:27 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:27 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:27 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:27 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:27 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:27 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:27 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:27 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:27 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:27 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:28 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:10:35 +0200 Processing by Devise::RegistrationsController#edit as
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered devise/registrations/edit.html.erb within layouts/application (2.7ms) Rendered shared/_header.html.erb (1.0ms) Rendered shared/_footer.html.erb (1.2ms)
Completed 200 OK in 24ms (Views: 20.7ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:35 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:35 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:35 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:35 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:35 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:35 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:35 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:35 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:35 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:35 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:35 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:35 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:35 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:35 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:35 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:35 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:35 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:35 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:35 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:35 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:35 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:35 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:35 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:35 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:35 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:10:38 +0200 Processing by Devise::RegistrationsController#edit as
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered devise/registrations/edit.html.erb within layouts/application (2.7ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 20ms (Views: 17.7ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:38 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:38 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:38 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:38 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:38 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:38 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:38 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:38 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:38 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:38 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:38 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:38 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:38 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:38 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:10:38 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:38 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:38 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:38 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:38 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:38 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:38 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:38 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:38 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:38 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:10:38 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:11:06 +0200 Processing by Devise::RegistrationsController#edit as
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered devise/registrations/edit.html.erb within layouts/application (4.3ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 112ms (Views: 108.9ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:06 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:06 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:06 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:06 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:06 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:06 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:06 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:06 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:06 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:06 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:06 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:06 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:06 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:06 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:06 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:06 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:06 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:06 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:06 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:06 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:06 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:06 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:06 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:06 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:06 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:11:13 +0200 Processing by Devise::RegistrationsController#edit as
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered devise/registrations/edit.html.erb within layouts/application (3.9ms) Rendered shared/_header.html.erb (3.4ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 26ms (Views: 23.5ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:13 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:13 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:13 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:13 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:13 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:13 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:13 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:13 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:13 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:13 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:13 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:13 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:13 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:13 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:13 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:13 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:13 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:13 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:13 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:13 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:13 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:13 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:13 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:13 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:13 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:11:20 +0200 Processing by Devise::RegistrationsController#edit as
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered devise/registrations/edit.html.erb within layouts/application (3.1ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 30ms (Views: 28.0ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:20 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:20 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:20 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:20 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:20 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:20 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:20 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:20 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:20 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:20 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:20 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:20 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:20 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:20 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:20 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:20 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:20 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:20 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:20 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:20 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:20 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:20 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:20 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:20 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:20 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:11:22 +0200 Processing by Devise::RegistrationsController#edit as
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered devise/registrations/edit.html.erb within layouts/application (2.8ms) Rendered shared/_header.html.erb (3.0ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 24ms (Views: 21.3ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:23 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:23 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:23 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:23 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:23 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:23 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:23 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:23 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:23 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:23 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:23 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:23 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:23 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:23 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:23 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:23 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:23 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:23 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:23 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:23 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:23 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:23 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:23 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:23 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:23 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:11:25 +0200 Processing by Devise::RegistrationsController#edit as
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered devise/registrations/edit.html.erb within layouts/application (7.8ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 25ms (Views: 23.4ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:25 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:25 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:25 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:25 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:25 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:25 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:25 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:25 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:25 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:25 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:25 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:25 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:25 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:25 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:25 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:25 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:25 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:25 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:25 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:25 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:25 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:25 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:25 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:25 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:25 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:11:32 +0200 Processing by Devise::RegistrationsController#edit as
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered devise/registrations/edit.html.erb within layouts/application (9.3ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 100ms (Views: 96.4ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:33 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:33 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:33 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:33 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:33 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:33 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:33 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:33 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:33 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:33 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:33 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:33 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:33 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:33 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:33 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:33 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:33 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:33 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:33 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:33 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:33 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:33 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:33 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:33 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:33 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:11:36 +0200 Processing by Devise::RegistrationsController#edit as
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered devise/registrations/edit.html.erb within layouts/application (2.6ms) Rendered shared/_header.html.erb (2.4ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 26ms (Views: 23.8ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:36 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:36 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:36 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:36 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:36 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:36 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:36 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:36 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:36 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:36 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:36 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:36 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:36 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:36 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:36 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:36 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:36 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:36 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:36 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:37 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:37 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:37 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:37 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:37 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:37 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:11:58 +0200 Processing by Devise::RegistrationsController#edit as
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered devise/registrations/edit.html.erb within layouts/application (4.0ms) Rendered shared/_header.html.erb (3.5ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 37ms (Views: 32.0ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:58 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:58 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:58 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:58 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:58 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:58 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:58 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:58 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:58 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:58 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:58 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:58 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:58 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:58 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:11:58 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:58 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:58 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:58 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:58 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:58 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:58 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:58 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:58 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:58 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:11:58 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:12:29 +0200 Processing by Devise::RegistrationsController#edit as
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered devise/registrations/edit.html.erb within layouts/application (3.2ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (52.6ms)
Completed 200 OK in 75ms (Views: 72.0ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:30 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:30 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:30 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:30 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:30 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:30 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:30 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:30 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:30 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:30 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:30 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:30 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:30 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:30 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:30 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:30 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:30 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:30 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:30 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:30 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:30 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:30 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:30 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:30 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:30 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:12:39 +0200 Processing by Devise::RegistrationsController#edit as
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered devise/registrations/edit.html.erb within layouts/application (3.1ms) Rendered shared/_header.html.erb (1.8ms) Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 26ms (Views: 23.4ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:39 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:39 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:39 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:39 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:39 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:39 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:39 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:39 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:39 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:39 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:39 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:39 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:39 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:39 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:39 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:39 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:39 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:39 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:39 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:39 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:39 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:39 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:39 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:39 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:39 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:12:49 +0200 Processing by Devise::RegistrationsController#edit as
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered devise/registrations/edit.html.erb within layouts/application (6.4ms) Rendered shared/_header.html.erb (5.7ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 38ms (Views: 36.0ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:49 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:49 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:49 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:49 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:49 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:49 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:49 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:49 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:49 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:49 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:49 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:49 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:49 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:49 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:12:49 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:49 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:49 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:49 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:49 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:49 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:49 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:49 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:49 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:49 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:12:49 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:12:59 +0200 Processing by Devise::RegistrationsController#edit as
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered devise/registrations/edit.html.erb within layouts/application (0.7ms)
Completed 500 Internal Server Error in 8ms
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/views/devise/registrations/edit.html.erb:10: syntax error, unexpected ')', expecting keyword_then or ';' or 'n' …ffer.append=( if @user.avatar );@output_buffer.safe_append=' … ^ /Users/rbarisic/rails_projects/game_codes/app/views/devise/registrations/edit.html.erb:51: syntax error, unexpected keyword_end, expecting ')' '; end
^
/Users/rbarisic/rails_projects/game_codes/app/views/devise/registrations/edit.html.erb:54: syntax error, unexpected keyword_ensure, expecting ')' /Users/rbarisic/rails_projects/game_codes/app/views/devise/registrations/edit.html.erb:56: syntax error, unexpected keyword_end, expecting ')'):
actionpack (4.0.8) lib/action_view/template.rb:299:in `module_eval' actionpack (4.0.8) lib/action_view/template.rb:299:in `compile' actionpack (4.0.8) lib/action_view/template.rb:248:in `block in compile!' actionpack (4.0.8) lib/action_view/template.rb:236:in `synchronize' actionpack (4.0.8) lib/action_view/template.rb:236:in `compile!' actionpack (4.0.8) lib/action_view/template.rb:142:in `block in render' activesupport (4.0.8) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.8) lib/action_view/template.rb:141:in `render' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' devise (3.4.1) app/controllers/devise/registrations_controller.rb:43:in `edit' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:443:in `_run__3153179864315340142__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/routing/mapper.rb:44:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__4191911351967724401__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (24.4ms)
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:13:06 +0200 Processing by Devise::RegistrationsController#edit as
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered devise/registrations/edit.html.erb within layouts/application (4.1ms) Rendered shared/_header.html.erb (1.7ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 101ms (Views: 98.1ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:06 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:06 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:06 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:06 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:06 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:06 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:06 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:06 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:06 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:06 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:06 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:06 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:06 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:06 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:06 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:13:06 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:13:06 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:13:06 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:13:06 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:13:06 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:13:06 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:13:06 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:13:06 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:13:06 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:13:06 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:13:27 +0200 Processing by Devise::RegistrationsController#edit as
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered devise/registrations/edit.html.erb within layouts/application (7.0ms) Rendered shared/_header.html.erb (1.8ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 32ms (Views: 28.8ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:27 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:27 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:27 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:27 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:27 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:27 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:27 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:27 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:27 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:27 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:27 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:27 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:27 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:27 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:13:27 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:13:27 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:13:27 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:13:27 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:13:27 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:13:27 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:13:27 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:13:27 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:13:27 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:13:27 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:13:27 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:14:09 +0200 Processing by Devise::RegistrationsController#edit as
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered devise/registrations/edit.html.erb within layouts/application (14.9ms) Rendered shared/_header.html.erb (5.7ms) Rendered shared/_footer.html.erb (1.4ms)
Completed 200 OK in 51ms (Views: 47.0ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:09 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:09 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:09 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:09 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:09 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:09 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:09 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:09 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:09 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:09 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:09 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:09 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:09 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:10 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:10 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:10 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:10 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:10 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:10 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:10 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:10 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:10 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:10 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:10 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:10 +0200
Started PUT “/users” for 127.0.0.1 at 2015-09-10 14:14:21 +0200 Processing by Devise::RegistrationsController#update as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"dSHketltrLrZGVxgbyh3Gxi3uO8hlqdyQbLmRcM98RE=", "user"=>{"avatar"=>#<ActionDispatch::Http::UploadedFile:0x007f92c8279770 @tempfile=#<Tempfile:/var/folders/z8/gpslyc_s77vcxt36x74h30tc0000gn/T/RackMultipart20150910-13618-1k1f6mp>, @original_filename="$_20.JPG", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"user[avatar]\"; filename=\"$_20.JPG\"\r\nContent-Type: image/jpeg\r\n">, "email"=>"admin@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "current_password"=>"[FILTERED]"}, "commit"=>"Update"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
Unpermitted parameters: avatar
[1m[35mUser Exists (0.3ms)[0m SELECT 1 AS one FROM "users" WHERE (LOWER("users"."nickname") = LOWER('admin') AND "users"."id" != 1) LIMIT 1
Rendered devise/registrations/edit.html.erb within layouts/application (13.6ms)
Rendered shared/_header.html.erb (1.6ms)
Rendered shared/_footer.html.erb (119.1ms)
Completed 200 OK in 308ms (Views: 146.3ms | ActiveRecord: 0.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:22 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:22 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:22 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:22 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:22 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:22 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:22 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:22 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:22 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:22 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:22 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:22 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:22 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:22 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:22 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:22 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:22 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:22 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:22 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:22 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:22 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:22 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:22 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:22 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:22 +0200
Started PUT “/users” for 127.0.0.1 at 2015-09-10 14:14:26 +0200 Processing by Devise::RegistrationsController#update as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"dSHketltrLrZGVxgbyh3Gxi3uO8hlqdyQbLmRcM98RE=", "user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "current_password"=>"[FILTERED]"}, "commit"=>"Update"}
[1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
[1m[36mUser Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "users" WHERE (LOWER("users"."nickname") = LOWER('admin') AND "users"."id" != 1) LIMIT 1[0m
Rendered devise/registrations/edit.html.erb within layouts/application (4.8ms)
Rendered shared/_header.html.erb (1.5ms)
Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 137ms (Views: 34.4ms | ActiveRecord: 2.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:26 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:26 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:26 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:26 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:26 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:26 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:26 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:26 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:26 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:26 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:26 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:26 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:26 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:26 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:26 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:26 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:26 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:26 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:26 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:26 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:26 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:26 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:26 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:26 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:26 +0200
Started PUT “/users” for 127.0.0.1 at 2015-09-10 14:14:30 +0200 Processing by Devise::RegistrationsController#update as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"dSHketltrLrZGVxgbyh3Gxi3uO8hlqdyQbLmRcM98RE=", "user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "current_password"=>"[FILTERED]"}, "commit"=>"Update"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mUser Exists (0.3ms)[0m SELECT 1 AS one FROM "users" WHERE (LOWER("users"."nickname") = LOWER('admin') AND "users"."id" != 1) LIMIT 1
Rendered devise/registrations/edit.html.erb within layouts/application (6.8ms)
Rendered shared/_header.html.erb (2.6ms)
Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 115ms (Views: 27.1ms | ActiveRecord: 0.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:30 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:30 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:30 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:30 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:30 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:30 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:30 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:30 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:30 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:30 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:30 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:30 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:30 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:30 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:14:30 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:31 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:31 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:31 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:31 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:31 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:31 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:31 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:31 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:31 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:14:31 +0200
Started PUT “/users” for 127.0.0.1 at 2015-09-10 14:15:09 +0200 Processing by Devise::RegistrationsController#update as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"dSHketltrLrZGVxgbyh3Gxi3uO8hlqdyQbLmRcM98RE=", "user"=>{"avatar"=>#<ActionDispatch::Http::UploadedFile:0x007f92c8290fd8 @tempfile=#<Tempfile:/var/folders/z8/gpslyc_s77vcxt36x74h30tc0000gn/T/RackMultipart20150910-13618-gquyoy>, @original_filename="$_20.JPG", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"user[avatar]\"; filename=\"$_20.JPG\"\r\nContent-Type: image/jpeg\r\n">, "email"=>"admin@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "current_password"=>"[FILTERED]"}, "commit"=>"Update"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Unpermitted parameters: avatar
[1m[36mUser Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "users" WHERE (LOWER("users"."nickname") = LOWER('admin') AND "users"."id" != 1) LIMIT 1[0m
Rendered devise/registrations/edit.html.erb within layouts/application (4.2ms)
Rendered shared/_header.html.erb (1.6ms)
Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 93ms (Views: 16.7ms | ActiveRecord: 0.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:09 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:09 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:09 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:09 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:09 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:09 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:09 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:09 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:09 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:09 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:09 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:09 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:09 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:09 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:09 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:09 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:09 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:09 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:09 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:09 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:09 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:09 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:09 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:09 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:09 +0200
Started PUT “/users” for 127.0.0.1 at 2015-09-10 14:15:19 +0200 Processing by Devise::RegistrationsController#update as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"dSHketltrLrZGVxgbyh3Gxi3uO8hlqdyQbLmRcM98RE=", "user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "current_password"=>"[FILTERED]"}, "commit"=>"Update"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
[1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE (LOWER("users"."nickname") = LOWER('admin') AND "users"."id" != 1) LIMIT 1
Rendered devise/registrations/edit.html.erb within layouts/application (11.5ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 157ms (Views: 22.3ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:19 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:19 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:19 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:19 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:19 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:19 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:19 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:19 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:19 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:19 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:19 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:19 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:19 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:19 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:19 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:19 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:19 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:19 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:19 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:19 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:19 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:19 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:19 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:19 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:19 +0200
Started GET “/users” for 127.0.0.1 at 2015-09-10 14:15:28 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (97.7ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 113ms (Views: 110.0ms | ActiveRecord: 0.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:29 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:29 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:29 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:29 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:29 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:29 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:29 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:29 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:29 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:29 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:29 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:29 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:29 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:29 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:29 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:29 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:29 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:29 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:29 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:29 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:29 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:29 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:29 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:29 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:29 +0200
Started GET “/users/1” for 127.0.0.1 at 2015-09-10 14:15:32 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 1]]
[1m[36mGameCode Load (0.1ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]]
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 7]]
[1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (8.0ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 19ms (Views: 16.5ms | ActiveRecord: 0.9ms)
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:15:34 +0200 Processing by Devise::RegistrationsController#edit as
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered devise/registrations/edit.html.erb within layouts/application (4.3ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 104ms (Views: 101.8ms | ActiveRecord: 0.3ms)
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:15:44 +0200 Processing by Devise::RegistrationsController#edit as
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered devise/registrations/edit.html.erb within layouts/application (3.8ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (1.4ms)
Completed 200 OK in 25ms (Views: 22.2ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:44 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:44 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:44 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:44 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:44 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:44 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:45 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:45 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:45 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:45 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:45 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:45 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:45 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:45 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:15:45 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:45 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:45 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:45 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:45 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:45 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:45 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:45 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:45 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:45 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:15:45 +0200
Started PUT “/users” for 127.0.0.1 at 2015-09-10 14:16:00 +0200 Processing by Devise::RegistrationsController#update as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"dSHketltrLrZGVxgbyh3Gxi3uO8hlqdyQbLmRcM98RE=", "user"=>{"avatar"=>#<ActionDispatch::Http::UploadedFile:0x007f92c82d2320 @tempfile=#<Tempfile:/var/folders/z8/gpslyc_s77vcxt36x74h30tc0000gn/T/RackMultipart20150910-13618-6dlt3z>, @original_filename="$_20.JPG", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"user[avatar]\"; filename=\"$_20.JPG\"\r\nContent-Type: image/jpeg\r\n">, "email"=>"admin@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "current_password"=>"[FILTERED]"}, "commit"=>"Update"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Unpermitted parameters: avatar
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.5ms)[0m SELECT 1 AS one FROM "users" WHERE (LOWER("users"."nickname") = LOWER('admin') AND "users"."id" != 1) LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (0.5ms)[0m [1mUPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = 1[0m [["encrypted_password", "$2a$10$a3o035WGIOR0CkF7gLgNQO7EtSIAxrWEheoaGIEPu3Oo3xnO/1n8q"], ["updated_at", Thu, 10 Sep 2015 12:16:00 UTC +00:00]] [1m[35m (1.5ms)[0m commit transaction
Redirected to localhost:3000/ Completed 302 Found in 141ms (ActiveRecord: 3.1ms)
Started GET “/” for 127.0.0.1 at 2015-09-10 14:16:00 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.5ms) [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (1.9ms) [1m[36mGame Load (0.4ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (11.6ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (6.4ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___536453388460758653_70134169285040 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (23.8ms) Rendered welcome/index.html.erb within layouts/application (52.0ms) [1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (10.2ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 155ms (Views: 150.1ms | ActiveRecord: 3.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:00 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:00 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:00 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:00 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:00 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:00 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:00 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:00 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:00 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:00 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:00 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:00 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:00 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:00 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:00 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:16:00 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:16:00 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:16:00 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:16:00 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:16:00 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:16:00 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:16:00 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:16:00 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:16:00 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:16:00 +0200
Started GET “/users/1” for 127.0.0.1 at 2015-09-10 14:16:16 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"1"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "1"]]
[1m[35m (0.6ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]]
[1m[36mGameCode Exists (1.0ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 1]]
[1m[35mGameCode Load (1.5ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]]
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mGame Load (0.5ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 7]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (59.7ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 187ms (Views: 65.1ms | ActiveRecord: 5.3ms)
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:16:18 +0200 Processing by Devise::RegistrationsController#edit as
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered devise/registrations/edit.html.erb within layouts/application (10.6ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 42ms (Views: 37.7ms | ActiveRecord: 0.4ms)
Started PUT “/users” for 127.0.0.1 at 2015-09-10 14:16:27 +0200 Processing by Devise::RegistrationsController#update as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"dSHketltrLrZGVxgbyh3Gxi3uO8hlqdyQbLmRcM98RE=", "user"=>{"avatar"=>#<ActionDispatch::Http::UploadedFile:0x007f92c7fd2ee0 @tempfile=#<Tempfile:/var/folders/z8/gpslyc_s77vcxt36x74h30tc0000gn/T/RackMultipart20150910-13618-8du04q>, @original_filename="$_20.JPG", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"user[avatar]\"; filename=\"$_20.JPG\"\r\nContent-Type: image/jpeg\r\n">, "email"=>"admin@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "current_password"=>"[FILTERED]"}, "commit"=>"Update"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Unpermitted parameters: avatar
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE (LOWER("users"."nickname") = LOWER('admin') AND "users"."id" != 1) LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (0.5ms)[0m [1mUPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = 1[0m [["encrypted_password", "$2a$10$u6gq8x/rTuWfmZCFQU3pw.STR7TPbca1sb6/OiA/aE4s5F11J7n7W"], ["updated_at", Thu, 10 Sep 2015 12:16:27 UTC +00:00]] [1m[35m (1.5ms)[0m commit transaction
Redirected to localhost:3000/ Completed 302 Found in 217ms (ActiveRecord: 2.8ms)
Started GET “/” for 127.0.0.1 at 2015-09-10 14:16:27 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (2.4ms) [1m[35m (0.6ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (3.0ms) [1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.6ms) [1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (13.3ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___536453388460758653_70134169285040 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (35.6ms) Rendered welcome/index.html.erb within layouts/application (63.6ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.4ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 80ms (Views: 74.3ms | ActiveRecord: 4.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:27 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:27 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:27 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:27 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:27 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:27 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:27 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:27 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:27 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:27 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:27 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:27 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:27 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:27 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:16:27 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:16:27 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:16:27 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:16:27 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:16:27 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:16:27 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:16:27 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:16:27 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:16:27 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:16:27 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:16:27 +0200
Started GET “/users/1” for 127.0.0.1 at 2015-09-10 14:16:30 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"1"}
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "1"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 1]]
[1m[35mGameCode Load (0.1ms)[0m SELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]]
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 7]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (10.2ms)
Rendered shared/_header.html.erb (1.3ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 70ms (Views: 67.9ms | ActiveRecord: 1.0ms)
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:16:32 +0200 Processing by Devise::RegistrationsController#edit as
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered devise/registrations/edit.html.erb within layouts/application (3.0ms) Rendered shared/_header.html.erb (2.5ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 42ms (Views: 37.6ms | ActiveRecord: 0.3ms)
Started PUT “/users” for 127.0.0.1 at 2015-09-10 14:17:50 +0200 Processing by Devise::RegistrationsController#update as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"dSHketltrLrZGVxgbyh3Gxi3uO8hlqdyQbLmRcM98RE=", "user"=>{"avatar"=>#<ActionDispatch::Http::UploadedFile:0x007f92c7b63eb8 @tempfile=#<Tempfile:/var/folders/z8/gpslyc_s77vcxt36x74h30tc0000gn/T/RackMultipart20150910-13618-1g8l04p>, @original_filename="$_20.JPG", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"user[avatar]\"; filename=\"$_20.JPG\"\r\nContent-Type: image/jpeg\r\n">, "email"=>"admin@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "current_password"=>"[FILTERED]"}, "commit"=>"Update"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
Unpermitted parameters: avatar
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE (LOWER("users"."nickname") = LOWER('admin') AND "users"."id" != 1) LIMIT 1[0m
Rendered devise/registrations/edit.html.erb within layouts/application (8.2ms)
Rendered shared/_header.html.erb (5.7ms)
Rendered shared/_footer.html.erb (1.6ms)
Completed 200 OK in 185ms (Views: 46.0ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:50 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:50 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:50 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:50 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:50 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:50 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:50 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:50 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:50 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:50 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:50 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:50 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:50 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:50 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:50 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:17:50 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:17:50 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:17:50 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:17:50 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:17:50 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:17:50 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:17:50 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:17:50 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:17:50 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:17:50 +0200
Started PUT “/users” for 127.0.0.1 at 2015-09-10 14:17:59 +0200 Processing by Devise::RegistrationsController#update as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"dSHketltrLrZGVxgbyh3Gxi3uO8hlqdyQbLmRcM98RE=", "user"=>{"avatar"=>#<ActionDispatch::Http::UploadedFile:0x007f92c472dba8 @tempfile=#<Tempfile:/var/folders/z8/gpslyc_s77vcxt36x74h30tc0000gn/T/RackMultipart20150910-13618-qedd2k>, @original_filename="$_20.JPG", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"user[avatar]\"; filename=\"$_20.JPG\"\r\nContent-Type: image/jpeg\r\n">, "email"=>"admin@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "current_password"=>"[FILTERED]"}, "commit"=>"Update"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
Unpermitted parameters: avatar
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE (LOWER("users"."nickname") = LOWER('admin') AND "users"."id" != 1) LIMIT 1[0m
Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (0.4ms)[0m UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["encrypted_password", "$2a$10$vqfJSmyIamvTlSTEPoDVSubXX2svqO8lbQs0KN6QWmPczzNJvjKri"], ["updated_at", Thu, 10 Sep 2015 12:17:59 UTC +00:00]] [1m[36m (1.6ms)[0m [1mcommit transaction[0m
Redirected to localhost:3000/ Completed 302 Found in 138ms (ActiveRecord: 2.7ms)
Started GET “/” for 127.0.0.1 at 2015-09-10 14:17:59 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (2.6ms) [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (0.9ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (2.4ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (6.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___536453388460758653_70134169285040 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (27.8ms) Rendered welcome/index.html.erb within layouts/application (43.8ms) [1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (6.8ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 73ms (Views: 67.9ms | ActiveRecord: 3.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:59 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:59 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:59 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:59 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:59 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:59 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:59 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:59 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:59 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:59 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:59 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:59 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:59 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:59 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:17:59 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:17:59 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:17:59 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:17:59 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:17:59 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:17:59 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:17:59 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:17:59 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:17:59 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:17:59 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:17:59 +0200
Started GET “/users/1” for 127.0.0.1 at 2015-09-10 14:18:01 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (1.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]]
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 1]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]]
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 7]]
[1m[35mCACHE (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mCACHE (0.2ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mCACHE (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (37.5ms)
Rendered shared/_header.html.erb (1.6ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 119ms (Views: 113.3ms | ActiveRecord: 3.9ms)
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:18:03 +0200 Processing by Devise::RegistrationsController#edit as
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered devise/registrations/edit.html.erb within layouts/application (12.8ms) Rendered shared/_header.html.erb (1.9ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 53ms (Views: 49.2ms | ActiveRecord: 0.3ms)
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:18:08 +0200 Processing by Devise::RegistrationsController#edit as
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered devise/registrations/edit.html.erb within layouts/application (10.2ms) Rendered shared/_header.html.erb (3.8ms) Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 52ms (Views: 48.7ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:08 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:08 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:08 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:08 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:08 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:08 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:08 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:08 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:08 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:08 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:08 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:08 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:08 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:08 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:08 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:08 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:08 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:08 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:08 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:08 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:08 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:08 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:08 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:08 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:08 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:18:24 +0200 Processing by Devise::RegistrationsController#edit as
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered devise/registrations/edit.html.erb within layouts/application (11.3ms) Rendered shared/_header.html.erb (2.8ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 94ms (Views: 91.3ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:24 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:24 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:24 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:24 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:24 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:24 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:24 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:24 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:24 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:24 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:24 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:24 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:24 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:24 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:24 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:24 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:24 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:24 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:24 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:24 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:24 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:24 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:24 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:24 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:24 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:18:52 +0200 Processing by Devise::RegistrationsController#edit as
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered devise/registrations/edit.html.erb within layouts/application (2.8ms) Rendered shared/_header.html.erb (1.5ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 24ms (Views: 21.4ms | ActiveRecord: 0.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:52 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:52 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:52 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:52 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:52 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:52 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:52 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:52 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:52 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:52 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:52 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:52 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:52 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:52 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:52 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:18:52 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:52 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:52 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:52 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:52 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:52 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:52 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:52 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:52 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:18:52 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:19:07 +0200 Processing by Devise::RegistrationsController#edit as
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered devise/registrations/edit.html.erb within layouts/application (4.1ms)
Completed 500 Internal Server Error in 10ms
ActionView::Template::Error (undefined method `name' for #<User:0x007f92c7aa9ab8>):
11: 12: <% else %> 13: NO AVATAR 14: <%= image_tag @user.avatar, alt: @user.name + "'s Avatar" %> 15: <% end %> 16: <%= f.file_field :avatar %> 17: </div> app/views/devise/registrations/edit.html.erb:14:in `block in _app_views_devise_registrations_edit_html_erb__1413469380043141141_70134195936960' app/views/devise/registrations/edit.html.erb:4:in `_app_views_devise_registrations_edit_html_erb__1413469380043141141_70134195936960' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.2ms)
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:19:09 +0200 Processing by Devise::RegistrationsController#edit as
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered devise/registrations/edit.html.erb within layouts/application (2.7ms)
Completed 500 Internal Server Error in 8ms
ActionView::Template::Error (undefined method `name' for #<User:0x007f92c7e62e20>):
11: 12: <% else %> 13: NO AVATAR 14: <%= image_tag @user.avatar, alt: @user.name + "'s Avatar" %> 15: <% end %> 16: <%= f.file_field :avatar %> 17: </div> app/views/devise/registrations/edit.html.erb:14:in `block in _app_views_devise_registrations_edit_html_erb__1413469380043141141_70134195936960' app/views/devise/registrations/edit.html.erb:4:in `_app_views_devise_registrations_edit_html_erb__1413469380043141141_70134195936960' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.3ms)
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:19:17 +0200 Processing by Devise::RegistrationsController#edit as
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered devise/registrations/edit.html.erb within layouts/application (4.1ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 27ms (Views: 23.2ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:17 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:17 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:17 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:17 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:17 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:17 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:17 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:17 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:17 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:17 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:17 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:17 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:17 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:17 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:17 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:19:17 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:19:17 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:19:17 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:19:17 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:19:17 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:19:17 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:19:17 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:19:17 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:19:17 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:19:17 +0200
Started GET “/users/edit.1” for 127.0.0.1 at 2015-09-10 14:19:29 +0200 Processing by Devise::RegistrationsController#edit as
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 Rendered devise/registrations/edit.html.erb within layouts/application (7.7ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 33ms (Views: 29.2ms | ActiveRecord: 0.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:29 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:29 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:29 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:29 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:29 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:29 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:29 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:29 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:29 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:29 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:29 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:29 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:29 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:29 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:19:29 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:19:29 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:19:30 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:19:30 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:19:30 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:19:30 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:19:30 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:19:30 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:19:30 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:19:30 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:19:30 +0200
Started GET “/users” for 127.0.0.1 at 2015-09-10 14:19:31 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (1.3ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (12.3ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (1.1ms)
Completed 200 OK in 36ms (Views: 31.9ms | ActiveRecord: 1.8ms)
Started GET “/users/5” for 127.0.0.1 at 2015-09-10 14:19:40 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"5"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "5"]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]]
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 5]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]]
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 6]]
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (21.0ms)
Rendered shared/_header.html.erb (1.8ms)
Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 129ms (Views: 125.3ms | ActiveRecord: 1.8ms)
Started GET “/users” for 127.0.0.1 at 2015-09-10 14:19:42 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (1.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (20.1ms) Rendered shared/_header.html.erb (2.2ms) Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 55ms (Views: 43.4ms | ActiveRecord: 1.9ms)
Started GET “/users” for 127.0.0.1 at 2015-09-10 14:20:23 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (6.0ms) Rendered shared/_header.html.erb (4.6ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 24ms (Views: 21.3ms | ActiveRecord: 0.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:24 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:24 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:24 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:24 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:24 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:24 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:24 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:24 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:24 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:24 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:24 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:24 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:24 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:24 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:24 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:24 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:24 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:24 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:24 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:24 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:24 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:24 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:24 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:24 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:24 +0200
Started GET “/users” for 127.0.0.1 at 2015-09-10 14:20:32 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (11.8ms) Rendered shared/_header.html.erb (4.3ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 31ms (Views: 29.0ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:32 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:32 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:32 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:32 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:32 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:32 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:32 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:32 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:32 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:32 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:32 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:32 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:32 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:32 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:32 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:32 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:32 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:32 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:32 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:32 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:32 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:32 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:32 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:32 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:32 +0200
Started GET “/users” for 127.0.0.1 at 2015-09-10 14:20:52 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (6.7ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 21ms (Views: 18.3ms | ActiveRecord: 0.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:52 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:52 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:52 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:52 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:52 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:52 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:52 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:52 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:52 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:52 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:52 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:52 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:52 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:52 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:20:52 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:52 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:52 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:52 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:52 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:52 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:52 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:52 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:52 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:52 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:20:52 +0200
Started GET “/users” for 127.0.0.1 at 2015-09-10 14:21:39 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (8.8ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 26ms (Views: 23.0ms | ActiveRecord: 0.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:39 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:39 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:39 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:39 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:39 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:39 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:39 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:39 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:39 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:39 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:39 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:39 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:39 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:39 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:39 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:21:39 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:21:39 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:21:39 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:21:39 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:21:39 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:21:39 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:21:39 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:21:39 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:21:39 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:21:39 +0200
Started GET “/users” for 127.0.0.1 at 2015-09-10 14:21:54 +0200 Processing by UsersController#index as HTML
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0 [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m Rendered users/index.html.erb within layouts/application (7.3ms) Rendered shared/_header.html.erb (3.2ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 82ms (Views: 79.5ms | ActiveRecord: 0.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:54 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:54 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:54 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:54 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:54 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:54 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:54 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:54 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:55 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:55 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:55 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:55 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:55 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:55 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:21:55 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:21:55 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:21:55 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:21:55 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:21:55 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:21:55 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:21:55 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:21:55 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:21:55 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:21:55 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:21:55 +0200
Started GET “/users?page=2” for 127.0.0.1 at 2015-09-10 14:21:58 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"2"}
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 25[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
Rendered users/index.html.erb within layouts/application (7.0ms)
Rendered shared/_header.html.erb (1.7ms)
Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 29ms (Views: 25.1ms | ActiveRecord: 0.8ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:21:59 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 50
Rendered users/index.html.erb within layouts/application (3.4ms)
Rendered shared/_header.html.erb (1.3ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 66ms (Views: 63.5ms | ActiveRecord: 0.4ms)
Started GET “/users?page=1” for 127.0.0.1 at 2015-09-10 14:22:00 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"1"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
Rendered users/index.html.erb within layouts/application (7.3ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 20ms (Views: 17.0ms | ActiveRecord: 0.7ms)
Started GET “/users/1” for 127.0.0.1 at 2015-09-10 14:22:04 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]]
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 1]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]]
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mGame Load (0.1ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 7]]
[1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (14.4ms)
Rendered shared/_header.html.erb (1.3ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 26ms (Views: 23.7ms | ActiveRecord: 1.5ms)
Started GET “/games” for 127.0.0.1 at 2015-09-10 14:22:05 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (17.3ms) Rendered games/index.html.erb within layouts/application (20.8ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 35ms (Views: 32.3ms | ActiveRecord: 1.7ms)
Started GET “/coins” for 127.0.0.1 at 2015-09-10 14:22:07 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]] Rendered users/your_coins.html.erb within layouts/application (0.6ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 115ms (Views: 111.9ms | ActiveRecord: 0.3ms)
Started GET “/users/1” for 127.0.0.1 at 2015-09-10 14:22:07 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"1"}
[1m[35mUser Load (1.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 1]]
[1m[36mGameCode Load (0.2ms)[0m [1mSELECT "game_codes".* FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]]
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mGame Load (0.5ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 7]]
[1m[35mCACHE (0.0ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 2]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 2]]
[1m[35mGame Load (0.1ms)[0m SELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1 [["id", 4]]
[1m[36mCACHE (0.0ms)[0m [1mSELECT "games".* FROM "games" WHERE "games"."id" = ? LIMIT 1[0m [["id", 4]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (20.0ms)
Rendered shared/_header.html.erb (2.0ms)
Rendered shared/_footer.html.erb (1.1ms)
Completed 200 OK in 45ms (Views: 36.0ms | ActiveRecord: 3.1ms)
Started DELETE “/users/sign_out” for 127.0.0.1 at 2015-09-10 14:22:23 +0200 Processing by Devise::SessionsController#destroy as HTML
Parameters: {"authenticity_token"=>"dSHketltrLrZGVxgbyh3Gxi3uO8hlqdyQbLmRcM98RE="}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36mSQL (1.5ms)[0m [1mUPDATE "users" SET "remember_created_at" = ?, "updated_at" = ? WHERE "users"."id" = 1[0m [["remember_created_at", nil], ["updated_at", Thu, 10 Sep 2015 12:22:23 UTC +00:00]]
[1m[35m (1.9ms)[0m commit transaction
Redirected to localhost:3000/ Completed 302 Found in 11ms (ActiveRecord: 3.7ms)
Started GET “/” for 127.0.0.1 at 2015-09-10 14:22:23 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (4.5ms) [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.9ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (11.1ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___536453388460758653_70134169285040 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (37.5ms) Rendered welcome/index.html.erb within layouts/application (61.6ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 78ms (Views: 73.1ms | ActiveRecord: 3.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:22:23 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:22:23 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:22:23 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:22:23 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:22:23 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:22:23 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:22:23 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:22:23 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:22:23 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:22:23 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:22:23 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:22:23 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:22:23 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:22:23 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:22:23 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:22:23 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:22:23 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:22:23 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:22:23 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:22:23 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:22:23 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:22:23 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:22:23 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:22:23 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:22:23 +0200
Started GET “/users/sign_up” for 127.0.0.1 at 2015-09-10 14:22:24 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.4ms) Rendered devise/registrations/new.html.erb within layouts/application (2.9ms) Rendered shared/_header.html.erb (2.1ms) Rendered shared/_footer.html.erb (1.1ms)
Completed 200 OK in 19ms (Views: 17.4ms | ActiveRecord: 0.0ms)
Started GET “/users/sign_up” for 127.0.0.1 at 2015-09-10 14:23:11 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (1.6ms) Rendered devise/registrations/new.html.erb within layouts/application (10.2ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 32ms (Views: 28.6ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:11 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:12 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:12 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:12 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:12 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:12 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:12 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:12 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:12 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:12 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:12 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:12 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:12 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:12 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:12 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:12 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:12 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:12 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:12 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:12 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:12 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:12 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:12 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:12 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:12 +0200
Started GET “/users/sign_up” for 127.0.0.1 at 2015-09-10 14:23:16 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (1.3ms) Rendered devise/registrations/new.html.erb within layouts/application (8.1ms) Rendered shared/_header.html.erb (1.6ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 24ms (Views: 20.7ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:16 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:16 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:16 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:16 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:16 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:16 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:16 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:16 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:16 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:16 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:16 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:16 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:16 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:16 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:16 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:16 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:16 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:16 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:16 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:16 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:16 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:16 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:16 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:16 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:16 +0200
Started GET “/users/sign_up” for 127.0.0.1 at 2015-09-10 14:23:26 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.9ms) Rendered devise/registrations/new.html.erb within layouts/application (7.5ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 22ms (Views: 21.0ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:26 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:26 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:26 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:26 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:26 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:26 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:26 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:26 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:26 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:26 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:26 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:26 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:26 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:26 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:26 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:26 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:26 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:26 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:26 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:26 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:26 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:26 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:26 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:26 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:26 +0200
Started GET “/users/sign_up” for 127.0.0.1 at 2015-09-10 14:23:33 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.2ms) Rendered devise/registrations/new.html.erb within layouts/application (2.6ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 14ms (Views: 12.4ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:34 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:34 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:34 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:34 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:34 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:34 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:34 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:34 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:34 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:34 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:34 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:34 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:34 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:34 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:34 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:34 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:34 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:34 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:34 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:34 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:34 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:34 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:34 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:34 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:34 +0200
Started GET “/users/sign_up” for 127.0.0.1 at 2015-09-10 14:23:41 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.3ms) Rendered devise/registrations/new.html.erb within layouts/application (6.1ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 91ms (Views: 89.6ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:41 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:41 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:41 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:41 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:41 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:41 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:41 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:41 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:41 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:41 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:41 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:41 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:41 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:41 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:41 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:41 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:41 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:41 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:41 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:41 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:41 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:41 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:41 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:41 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:41 +0200
Started GET “/users/sign_up” for 127.0.0.1 at 2015-09-10 14:23:46 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.4ms) Rendered devise/registrations/new.html.erb within layouts/application (9.8ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 27ms (Views: 24.7ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:46 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:46 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:46 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:46 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:46 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:46 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:46 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:46 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:46 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:46 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:46 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:46 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:46 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:46 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:23:46 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:46 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:46 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:46 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:46 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:46 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:46 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:46 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:46 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:46 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:23:46 +0200
Started GET “/users/sign_up” for 127.0.0.1 at 2015-09-10 14:24:12 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.3ms) Rendered devise/registrations/new.html.erb within layouts/application (4.2ms) Rendered shared/_header.html.erb (2.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 75ms (Views: 73.8ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:24:12 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:24:12 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:24:12 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:24:12 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:24:12 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:24:12 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:24:12 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:24:12 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:24:12 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:24:12 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:24:12 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:24:12 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:24:12 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:24:12 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:24:12 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:24:12 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:24:12 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:24:12 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:24:12 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:24:12 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:24:12 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:24:12 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:24:12 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:24:12 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:24:12 +0200
Started GET “/users/sign_up” for 127.0.0.1 at 2015-09-10 14:25:24 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.4ms) Rendered devise/registrations/new.html.erb within layouts/application (19.1ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 36ms (Views: 32.9ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:24 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:24 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:24 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:24 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:24 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:24 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:24 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:24 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:24 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:24 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:24 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:24 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:24 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:24 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:24 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:24 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:24 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:24 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:24 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:24 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:24 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:24 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:24 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:24 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:24 +0200
Started GET “/users/sign_up” for 127.0.0.1 at 2015-09-10 14:25:50 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.2ms) Rendered devise/registrations/new.html.erb within layouts/application (3.9ms) Rendered shared/_header.html.erb (1.1ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:50 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:50 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:50 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:50 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:50 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:50 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:50 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:50 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:50 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:50 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:50 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:50 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:50 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:50 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:50 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:50 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:50 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:50 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:50 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:50 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:50 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:50 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:50 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:50 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:50 +0200
Started GET “/users/sign_up” for 127.0.0.1 at 2015-09-10 14:25:58 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.5ms) Rendered devise/registrations/new.html.erb within layouts/application (5.0ms) Rendered shared/_header.html.erb (1.6ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 26ms (Views: 25.0ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:58 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:58 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:58 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:58 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:58 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:58 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:58 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:58 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:58 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:58 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:58 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:58 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:58 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:58 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:25:58 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:58 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:58 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:58 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:58 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:58 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:58 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:58 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:58 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:58 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:25:58 +0200
Started GET “/users/sign_up” for 127.0.0.1 at 2015-09-10 14:26:14 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.4ms) Rendered devise/registrations/new.html.erb within layouts/application (8.8ms) Rendered shared/_header.html.erb (3.4ms) Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 84ms (Views: 83.0ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:14 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:14 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:14 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:14 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:14 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:14 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:14 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:14 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:14 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:14 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:14 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:14 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:14 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:14 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:14 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:26:14 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:26:14 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:26:14 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:26:14 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:26:14 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:26:14 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:26:14 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:26:14 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:26:14 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:26:14 +0200
Started GET “/users/sign_up” for 127.0.0.1 at 2015-09-10 14:26:17 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.2ms) Rendered devise/registrations/new.html.erb within layouts/application (3.7ms) Rendered shared/_header.html.erb (2.2ms) Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 21ms (Views: 17.8ms | ActiveRecord: 0.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:17 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:17 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:17 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:17 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:17 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:17 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:17 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:17 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:17 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:17 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:17 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:17 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:17 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:17 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:26:17 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:26:17 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:26:17 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:26:17 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:26:17 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:26:17 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:26:17 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:26:17 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:26:17 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:26:17 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:26:17 +0200
Started POST “/users” for 127.0.0.1 at 2015-09-10 14:26:42 +0200 Processing by Devise::RegistrationsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"vFks+8nnDqvC1ZHTXTkxBgsPKp/VfjCkDdcVyKFSD94=", "user"=>{"nickname"=>"Jorg", "email"=>"jorg@jorg.en", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "avatar"=>#<ActionDispatch::Http::UploadedFile:0x007f92c7be23a8 @tempfile=#<Tempfile:/var/folders/z8/gpslyc_s77vcxt36x74h30tc0000gn/T/RackMultipart20150910-13618-v5927d>, @original_filename="image004.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"user[avatar]\"; filename=\"image004.jpg\"\r\nContent-Type: image/jpeg\r\n">, "community_terms"=>"1"}, "commit"=>"Sign up"}
Completed 500 Internal Server Error in 67ms
NoMethodError (undefined method `encoding' for #<ActionDispatch::Http::UploadedFile:0x007f92c7be23a8>):
activerecord (4.0.8) lib/active_record/connection_adapters/sqlite3_adapter.rb:41:in `binary_to_string' activerecord (4.0.8) lib/active_record/connection_adapters/column.rb:105:in `type_cast' activerecord (4.0.8) lib/active_record/attribute_methods/dirty.rb:93:in `_field_changed?' activerecord (4.0.8) lib/active_record/attribute_methods/dirty.rb:66:in `write_attribute' activerecord (4.0.8) lib/active_record/attribute_methods/write.rb:21:in `__temp__166716471627=' activerecord (4.0.8) lib/active_record/attribute_assignment.rb:42:in `public_send' activerecord (4.0.8) lib/active_record/attribute_assignment.rb:42:in `_assign_attribute' activerecord (4.0.8) lib/active_record/attribute_assignment.rb:29:in `block in assign_attributes' activerecord (4.0.8) lib/active_record/attribute_assignment.rb:23:in `each' activerecord (4.0.8) lib/active_record/attribute_assignment.rb:23:in `assign_attributes' activerecord (4.0.8) lib/active_record/core.rb:469:in `init_attributes' activerecord (4.0.8) lib/active_record/core.rb:185:in `initialize' activerecord (4.0.8) lib/active_record/inheritance.rb:30:in `new' activerecord (4.0.8) lib/active_record/inheritance.rb:30:in `new' devise (3.4.1) lib/devise/models/registerable.rb:20:in `new_with_session' devise (3.4.1) app/controllers/devise/registrations_controller.rb:105:in `build_resource' devise (3.4.1) app/controllers/devise/registrations_controller.rb:17:in `create' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:443:in `_run__3153179864315340142__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/routing/mapper.rb:44:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:35:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__4191911351967724401__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.5ms)
Started POST “/users” for 127.0.0.1 at 2015-09-10 14:30:26 +0200 Processing by Devise::RegistrationsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"vFks+8nnDqvC1ZHTXTkxBgsPKp/VfjCkDdcVyKFSD94=", "user"=>{"nickname"=>"Jorg", "email"=>"jorg@jorg.en", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "avatar"=>#<ActionDispatch::Http::UploadedFile:0x007f92c5189958 @tempfile=#<Tempfile:/var/folders/z8/gpslyc_s77vcxt36x74h30tc0000gn/T/RackMultipart20150910-13618-1rmv7li>, @original_filename="image004.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"user[avatar]\"; filename=\"image004.jpg\"\r\nContent-Type: image/jpeg\r\n">, "community_terms"=>"1"}, "commit"=>"Sign up"}
Completed 500 Internal Server Error in 147ms
NoMethodError (undefined method `encoding' for #<ActionDispatch::Http::UploadedFile:0x007f92c5189958>):
activerecord (4.0.8) lib/active_record/connection_adapters/sqlite3_adapter.rb:41:in `binary_to_string' activerecord (4.0.8) lib/active_record/connection_adapters/column.rb:105:in `type_cast' activerecord (4.0.8) lib/active_record/attribute_methods/dirty.rb:93:in `_field_changed?' activerecord (4.0.8) lib/active_record/attribute_methods/dirty.rb:66:in `write_attribute' activerecord (4.0.8) lib/active_record/attribute_methods/write.rb:21:in `__temp__166716471627=' activerecord (4.0.8) lib/active_record/attribute_assignment.rb:42:in `public_send' activerecord (4.0.8) lib/active_record/attribute_assignment.rb:42:in `_assign_attribute' activerecord (4.0.8) lib/active_record/attribute_assignment.rb:29:in `block in assign_attributes' activerecord (4.0.8) lib/active_record/attribute_assignment.rb:23:in `each' activerecord (4.0.8) lib/active_record/attribute_assignment.rb:23:in `assign_attributes' activerecord (4.0.8) lib/active_record/core.rb:469:in `init_attributes' activerecord (4.0.8) lib/active_record/core.rb:185:in `initialize' activerecord (4.0.8) lib/active_record/inheritance.rb:30:in `new' activerecord (4.0.8) lib/active_record/inheritance.rb:30:in `new' devise (3.4.1) lib/devise/models/registerable.rb:20:in `new_with_session' devise (3.4.1) app/controllers/devise/registrations_controller.rb:105:in `build_resource' devise (3.4.1) app/controllers/devise/registrations_controller.rb:17:in `create' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:443:in `_run__3153179864315340142__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/routing/mapper.rb:44:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:35:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__4191911351967724401__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.8ms) [1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Migrating to ConvertUserAvatarFromBinaryToString (20150910123057)
[1m[35m (0.1ms)[0m begin transaction
[1m[36m (0.6ms)[0m [1mCREATE TEMPORARY TABLE "ausers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255), "created_at" datetime, "updated_at" datetime, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "admin" varchar(255) DEFAULT 'f', "coins" integer DEFAULT 0, "requests_today" integer DEFAULT 2, "avatar" blob) [0m
[1m[35m (0.6ms)[0m CREATE UNIQUE INDEX "tindex_ausers_on_reset_password_token" ON "ausers" ("reset_password_token")
[1m[36m (0.2ms)[0m [1mCREATE UNIQUE INDEX "tindex_ausers_on_email" ON "ausers" ("email")[0m
[1m[35m (0.1ms)[0m CREATE INDEX "tindex_ausers_on_nickname" ON "ausers" ("nickname")
[1m[36m (0.3ms)[0m [1mSELECT * FROM "users"[0m
[1m[35m (0.1ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (1, 'admin', '2015-06-20 14:46:49.640171', '2015-09-10 12:22:23.042032', 'admin@example.com', '$2a$10$vqfJSmyIamvTlSTEPoDVSubXX2svqO8lbQs0KN6QWmPczzNJvjKri', NULL, NULL, NULL, 7, '2015-09-10 12:03:25.616775', '2015-08-14 10:35:44.563056', '127.0.0.1', '127.0.0.1', 't', 0, 0, NULL)
[1m[36m (0.1ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (2, 'alanis_davis', '2015-06-20 14:46:49.704481', '2015-06-20 14:46:49.704481', 'creola_connelly@yundtharris.org', '$2a$10$lhdwJoouoihRbzvGBNka3ucGjOg9EZycA/EJK4BoQESECteNGLpAS', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.1ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (3, 'donna.klein', '2015-06-20 14:46:49.770155', '2015-06-20 14:46:49.770155', 'delpha@mills.com', '$2a$10$iI4czb.4Yt6Z/Bgu1XcAUeL6eTmG27A1XdUjKChYJt8p/KeOoVfZi', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.1ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (4, 'veronica_donnelly', '2015-06-20 14:46:49.834725', '2015-06-20 14:46:49.834725', 'lenna.luettgen@bruen.org', '$2a$10$DNQNNstHuqMrMvlm2Gx8d.z5Ld4MrxFPC4WZSPpZNbPe4mnWV5mfu', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (5, 'haie', '2015-06-20 14:46:49.900149', '2015-06-20 14:46:49.900149', 'kara.willms@kemmer.com', '$2a$10$BfxTusRU.fNgvoa/DFwhW.NXNmzqrDXAMwh1CjL3jBPHAOpnKPabW', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (6, 'faye', '2015-06-20 14:46:49.965872', '2015-06-20 14:46:49.965872', 'damian_dooley@barton.org', '$2a$10$6jVVLpFmZS2S2JoiPdGYcOK9WxeQRPyyluUtF4S2hP2dBrMnHdHtS', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.1ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (7, 'orland.ryan', '2015-06-20 14:46:50.031584', '2015-06-20 14:46:50.031584', 'leo@torphyokeefe.name', '$2a$10$X8.IeP.yUzGn4U.zVP266.RsSUysHv5dK8pJCx5OT8hXXxjJMX.U2', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.1ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (8, 'forrest_streich', '2015-06-20 14:46:50.096878', '2015-06-20 14:46:50.096878', 'jamaal_schmeler@bergnaum.org', '$2a$10$IwWZzUEuHMPz46H2MZWQtOBnEK3ZCwHQpgCongtTC6zRpLAVl53Ry', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.1ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (9, 'simone_weinat', '2015-06-20 14:46:50.158954', '2015-06-20 14:46:50.158954', 'alek@oconner.name', '$2a$10$YpLIpPP6dIgB0o9LQ1y1HenOVd0Exkzgsi5KB8kHxNXLJDw9R8uMK', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.1ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (10, 'hester', '2015-06-20 14:46:50.229465', '2015-06-20 14:46:50.229465', 'roselyn@wilderman.name', '$2a$10$eT88V0Qn2/yJbgtT4dn4S.smdlPvRiJEL6J9OkavsuK7uKEr0ToZ6', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.1ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (11, 'theron.reichel', '2015-06-20 14:46:50.308003', '2015-06-20 14:46:50.308003', 'toney_brekke@altenwerthzulauf.com', '$2a$10$nYjpErS8oU3I1e9NzuVqBeEJBCsw..vsaR6M.cyg5/ZEKMGFXif56', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.1ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (12, 'conor.heaney', '2015-06-20 14:46:50.374953', '2015-06-20 14:46:50.374953', 'laurie@kuhn.net', '$2a$10$rRzgJ/WdOcg/6XO3qMFHg.0/r/l5G0KqqCMJ9/eY.0Tj7US4DSwgW', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.1ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (13, 'hank', '2015-06-20 14:46:50.439888', '2015-06-20 14:46:50.439888', 'sophia.bednar@west.biz', '$2a$10$3K6pWZVuD1ZmhY.y11XXK.dwaB/Im9YjwF8x.xHvRj7oy1BnBADHa', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.1ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (14, 'aniyah', '2015-06-20 14:46:50.501999', '2015-06-20 14:46:50.501999', 'remington@corkery.net', '$2a$10$vLmxJiRGRole1wVFyXYP4.5zBJ7kclw8FMHEyiSlpy939DiRzteDu', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.1ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (15, 'daron', '2015-06-20 14:46:50.564257', '2015-06-20 14:46:50.564257', 'francis@stanton.name', '$2a$10$.E/qjiW14jFcnJmOpKKdR.M.voCGU.wCqD/96ka1omPTub2Yf8sy.', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.1ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (16, 'winona_schowalter', '2015-06-20 14:46:50.626473', '2015-06-20 14:46:50.626473', 'charlotte@pfannerstill.com', '$2a$10$paHtYSzYDOLJ.QAY90q0IeAxvgylFjeHGESsATxLfxyeYIF3rcNVy', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (17, 'braulio', '2015-06-20 14:46:50.688991', '2015-06-20 14:46:50.688991', 'jaqueline_hermiston@littel.org', '$2a$10$PCNI/P5itMzCI4YbEYos5eLr/A6OazVTnLMB4i3ciKhSm6AjTc46a', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (18, 'caleigh', '2015-06-20 14:46:50.755938', '2015-06-20 14:46:50.755938', 'claude@weimannpouros.name', '$2a$10$Uo14NPLh2iGSslb8eF5Iqebz9Fb2SnxhOcUTQuhy0cjUOtDh/RWzW', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (19, 'brandy_gulgowski', '2015-06-20 14:46:50.821378', '2015-06-20 14:46:50.821378', 'rebeka.shields@quigley.org', '$2a$10$7O8tnBWA7bQsGEAK3RjbBuWUz8LO7S2AiMz0VsB0AcmwN45RC6AJG', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (20, 'theresia', '2015-06-20 14:46:50.884003', '2015-06-20 14:46:50.884003', 'trycia.hodkiewicz@gorczany.info', '$2a$10$F5nZUWZns7EQkDiQ.OvmNO940usjc6ikGwPS0rgWrC9/K/l0qb/O.', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (21, 'earnestine', '2015-06-20 14:46:50.949884', '2015-06-20 14:46:50.949884', 'hazle@lehner.com', '$2a$10$nmH2Xw3T//C7Zsh2buVaZuAie/5EyYnQmMbpyETj7lHt.0qdyzOVm', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (22, 'arvilla', '2015-06-20 14:46:51.015462', '2015-06-20 14:46:51.015462', 'josefina@schmidt.com', '$2a$10$Pmqif5J5BCvTrWFq2TzV8eWnmyBVck7ihamBdm.wPSbDaPKpv3pnm', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (23, 'jane.crist', '2015-06-20 14:46:51.078132', '2015-06-20 14:46:51.078132', 'amalia.breitenberg@glover.name', '$2a$10$C8gjtEzavnhpkOgzlNJ0L.ICciaNhDa5bGGXGsyfAHGZuELZsHnsi', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.1ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (24, 'dylan.wyman', '2015-06-20 14:46:51.140519', '2015-06-20 14:46:51.140519', 'noel.ledner@raudickens.info', '$2a$10$7aw8Z8d6b2vfX5GGRLG20OJhtVXmUJbz8vtCcQ1dMcA0ppGqlPAbO', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (25, 'harold', '2015-06-20 14:46:51.205868', '2015-06-20 14:46:51.205868', 'bryce_volkman@boylepowlowski.biz', '$2a$10$zMvJU4xc5w/0xG5bTHfvNub9quBwdVAxsR7h/TNpcS8rq43W7.53.', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (26, 'lois.rogahn', '2015-06-20 14:46:51.271467', '2015-06-20 14:46:51.271467', 'colten.goyette@west.org', '$2a$10$7IYyF9bzeZnlgfmC88jLLuMzIHwEA9h7MGEgDHWdyjanD2cZoaASe', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (27, 'jayson_ko', '2015-06-20 14:46:51.338006', '2015-06-20 14:46:51.338006', 'robb@harris.org', '$2a$10$x/Vu4hvJFNWDioQLrv6Vke6QZmirTeDrxV48y5TVeP9gyeh0wBdT.', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (28, 'cora', '2015-06-20 14:46:51.400576', '2015-06-20 14:46:51.400576', 'kennith_bernier@dietrich.info', '$2a$10$7cxUqNUfMUeEogtpqxpOSOOK6t2VLumo69pb/pDNEUhzBXg.Kv8j6', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.1ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (29, 'irma.mann', '2015-06-20 14:46:51.469495', '2015-06-20 14:46:51.469495', 'coleman@hettingerstiedemann.net', '$2a$10$/xE2AlCeXPSiinfQNmayTOc6dAb2T1qSRkM9BozmU9Mmwr/Fj7HWK', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (30, 'hanna', '2015-06-20 14:46:51.534864', '2015-06-20 14:46:51.534864', 'melisa@johnsongrant.info', '$2a$10$mUUdnm1zVSwHSWWQLGpkqO7B0PWX6xwPUfDWJAbm/fD/.o3n.u7/W', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.1ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (31, 'martine.cain', '2015-06-20 14:46:51.597331', '2015-06-20 14:46:51.597331', 'chase@oberbrunnerwilkinson.biz', '$2a$10$o9lAUPHU2THEMEgempXBbOZjA1QUecQMabyYY77Otg8JmjXW/e0JG', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.1ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (32, 'theron', '2015-06-20 14:46:51.663024', '2015-06-20 14:46:51.663024', 'afton.emard@damorethiel.net', '$2a$10$PlQclU/jDgkNpBUN0nxMOeLYuTIt2vK2T.Zt1b5UCzTM2TirtQXB.', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (33, 'kaylie_schimmel', '2015-06-20 14:46:51.732998', '2015-06-20 14:46:51.732998', 'mona@ziemann.info', '$2a$10$j5MbfJQFdm7Lte9udhDTSOlr2ilOIFDvGnJpAkEVCKDltfW7SXgdu', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (34, 'clair.rempel', '2015-06-20 14:46:51.798407', '2015-06-20 14:46:51.798407', 'rosemarie.koelpin@nienow.org', '$2a$10$Z1k4Sl.uHtqN887kOWbAcen47K1zSWE0Wb4RRBB3GxqNE8Pa0WQhG', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (35, 'teresa', '2015-06-20 14:46:51.870265', '2015-06-20 14:46:51.870265', 'reed@borer.biz', '$2a$10$6.lA4n3yabvjPI/1CQuBqeKZq.P0.PziqIsjXmf1qyZ2/JeAfU0IW', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (36, 'brenda', '2015-06-20 14:46:51.938659', '2015-06-20 14:46:51.938659', 'harley_huel@reilly.name', '$2a$10$HYmEaFmWDIZndJqDhorlEOrk9vTIyc7UiZBjB/rTnQCHB6ayLk4qC', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (37, 'sidney_predovic', '2015-06-20 14:46:52.004438', '2015-06-20 14:46:52.004438', 'maria@deckow.biz', '$2a$10$yUXcuEaA8Ujzasv6G/jzwOPV0z/odmZOPDg5uHeutzfgglAPrOaF6', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (38, 'isaac', '2015-06-20 14:46:52.072570', '2015-06-20 14:46:52.072570', 'harvey_yundt@dubuque.com', '$2a$10$WrdathYBcpGCOpHzcPCfCOoqie6JKtT2BI.j9yV.6fuR.In3.jNDq', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (39, 'ubaldo_stracke', '2015-06-20 14:46:52.135178', '2015-06-20 14:46:52.135178', 'laron@berge.biz', '$2a$10$iwM4jjvsrxL60E1/wbkvD.mrSYMuXr6GsEJV1DCmgrrNl/M8LI1nq', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.1ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (40, 'loren', '2015-06-20 14:46:52.197575', '2015-06-20 14:46:52.197575', 'neva@bergstrom.com', '$2a$10$QiGvjkdSinbNjm616ckY/.1dPCDg01qJwCwTh5reylkECJTXaDI6y', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.1ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (41, 'addison', '2015-06-20 14:46:52.263264', '2015-06-20 14:46:52.263264', 'amelia@pricewaelchi.biz', '$2a$10$7ZO2OHsMEmKLA3OSNNbC1emcr3My0kuIOA3vVZfpEd.unZfFBrH6m', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.1ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (42, 'stephen.jast', '2015-06-20 14:46:52.327821', '2015-06-20 14:46:52.327821', 'lauryn@berniercollier.info', '$2a$10$MGd0gQ2HcphaWQPVlChEaO7q9ifsFdJWWnY/lUtakWZmOwHQ3aHvK', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.1ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (43, 'elliot.swaniawski', '2015-06-20 14:46:52.395982', '2015-06-20 14:46:52.395982', 'rosamond@kohler.name', '$2a$10$s1tmbkOVPK0m0T/FRSJd1OtYaBTMKf.11177No6tg7oqvJL/U8Dse', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.1ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (44, 'florence_gleichner', '2015-06-20 14:46:52.461647', '2015-06-20 14:46:52.461647', 'lenore@daniel.info', '$2a$10$maqgK85ASDhANulCuREDbu4VXccjNW.uh7.xdCsaSPm/TV5qVfFBi', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (45, 'mayra_schiller', '2015-06-20 14:46:52.527510', '2015-06-20 14:46:52.527510', 'candida@king.com', '$2a$10$fTmSLLEdAjmKk4F9A3LvhOWgAA4IKXoIZCey2BqvFHFIdHLc5Hm7.', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.1ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (46, 'dorian', '2015-06-20 14:46:52.590127', '2015-06-20 14:46:52.590127', 'howard_graham@heller.com', '$2a$10$0YGNMprWUCkSJFUS.iHoW./i4zoqE/mp0swW9NKBawx5R84zePVcu', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.1ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (47, 'lorenzo.ohara', '2015-06-20 14:46:52.658596', '2015-06-20 14:46:52.658596', 'keira_towne@kohler.info', '$2a$10$B79nSoBnL4ZWebj9c9AlOeH40NgwyAIOBI2W9e.6anYwC2oTmMcK6', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.1ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (48, 'pedro_schuster', '2015-06-20 14:46:52.721161', '2015-06-20 14:46:52.721161', 'breanna@lockmanswaniawski.com', '$2a$10$kuGNe3.29fUeGVLtBopveueHlCONEsHcvHpNGlHDE1fQKPsZgG7DS', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.1ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (49, 'gilbert', '2015-06-20 14:46:52.783588', '2015-06-20 14:46:52.783588', 'maiya@koelpin.com', '$2a$10$RW3zYnfV.RlEQypCe7o2gOASkAVHT/KA9eOcf5199tx1jjxrVQpd2', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (50, 'clyde', '2015-06-20 14:46:52.849062', '2015-06-20 14:46:52.849062', 'pamela.mitchell@hintz.biz', '$2a$10$zsgrTP8z7eBZyq.zvhgIA.stdFXKSuqv3oDGLbLMK7q9ZL5//5zPG', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (51, 'michale.simonis', '2015-06-20 14:46:52.915678', '2015-06-20 14:46:52.915678', 'eli_blanda@kiehn.info', '$2a$10$3ZlfUFKYzU4H8DsdVmadj.rrRPUraw2EQx4TiF1bWr8I04BOSkcjK', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "ausers" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (52, 'peter', '2015-06-24 12:59:49.472133', '2015-07-23 19:18:08.632427', 'peter@son.de', '$2a$10$O1XsP2iZSs5k69GdtHVobuz3rSWBDAS7oo2qppIniP2oPtpsy2VKW', NULL, NULL, NULL, 7, '2015-07-23 19:14:43.476707', '2015-07-03 15:50:10.166389', '127.0.0.1', '127.0.0.1', 'f', 0, 13, NULL)[0m
[1m[35m (0.9ms)[0m DROP TABLE "users"
[1m[36m (0.2ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255), "created_at" datetime, "updated_at" datetime, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "admin" varchar(255) DEFAULT 'f', "coins" integer DEFAULT 0, "requests_today" integer DEFAULT 2, "avatar" varchar(255)) [0m
[1m[35m (0.1ms)[0m CREATE INDEX "index_users_on_nickname" ON "users" ("nickname")
[1m[36m (0.4ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")[0m
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
[1m[36m (0.2ms)[0m [1mSELECT * FROM "ausers"[0m
[1m[35m (0.1ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (1, 'admin', '2015-06-20 14:46:49.640171', '2015-09-10 12:22:23.042032', 'admin@example.com', '$2a$10$vqfJSmyIamvTlSTEPoDVSubXX2svqO8lbQs0KN6QWmPczzNJvjKri', NULL, NULL, NULL, 7, '2015-09-10 12:03:25.616775', '2015-08-14 10:35:44.563056', '127.0.0.1', '127.0.0.1', 't', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (2, 'alanis_davis', '2015-06-20 14:46:49.704481', '2015-06-20 14:46:49.704481', 'creola_connelly@yundtharris.org', '$2a$10$lhdwJoouoihRbzvGBNka3ucGjOg9EZycA/EJK4BoQESECteNGLpAS', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (3, 'donna.klein', '2015-06-20 14:46:49.770155', '2015-06-20 14:46:49.770155', 'delpha@mills.com', '$2a$10$iI4czb.4Yt6Z/Bgu1XcAUeL6eTmG27A1XdUjKChYJt8p/KeOoVfZi', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (4, 'veronica_donnelly', '2015-06-20 14:46:49.834725', '2015-06-20 14:46:49.834725', 'lenna.luettgen@bruen.org', '$2a$10$DNQNNstHuqMrMvlm2Gx8d.z5Ld4MrxFPC4WZSPpZNbPe4mnWV5mfu', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (5, 'haie', '2015-06-20 14:46:49.900149', '2015-06-20 14:46:49.900149', 'kara.willms@kemmer.com', '$2a$10$BfxTusRU.fNgvoa/DFwhW.NXNmzqrDXAMwh1CjL3jBPHAOpnKPabW', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (6, 'faye', '2015-06-20 14:46:49.965872', '2015-06-20 14:46:49.965872', 'damian_dooley@barton.org', '$2a$10$6jVVLpFmZS2S2JoiPdGYcOK9WxeQRPyyluUtF4S2hP2dBrMnHdHtS', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (7, 'orland.ryan', '2015-06-20 14:46:50.031584', '2015-06-20 14:46:50.031584', 'leo@torphyokeefe.name', '$2a$10$X8.IeP.yUzGn4U.zVP266.RsSUysHv5dK8pJCx5OT8hXXxjJMX.U2', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (8, 'forrest_streich', '2015-06-20 14:46:50.096878', '2015-06-20 14:46:50.096878', 'jamaal_schmeler@bergnaum.org', '$2a$10$IwWZzUEuHMPz46H2MZWQtOBnEK3ZCwHQpgCongtTC6zRpLAVl53Ry', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (9, 'simone_weinat', '2015-06-20 14:46:50.158954', '2015-06-20 14:46:50.158954', 'alek@oconner.name', '$2a$10$YpLIpPP6dIgB0o9LQ1y1HenOVd0Exkzgsi5KB8kHxNXLJDw9R8uMK', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (10, 'hester', '2015-06-20 14:46:50.229465', '2015-06-20 14:46:50.229465', 'roselyn@wilderman.name', '$2a$10$eT88V0Qn2/yJbgtT4dn4S.smdlPvRiJEL6J9OkavsuK7uKEr0ToZ6', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (11, 'theron.reichel', '2015-06-20 14:46:50.308003', '2015-06-20 14:46:50.308003', 'toney_brekke@altenwerthzulauf.com', '$2a$10$nYjpErS8oU3I1e9NzuVqBeEJBCsw..vsaR6M.cyg5/ZEKMGFXif56', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (12, 'conor.heaney', '2015-06-20 14:46:50.374953', '2015-06-20 14:46:50.374953', 'laurie@kuhn.net', '$2a$10$rRzgJ/WdOcg/6XO3qMFHg.0/r/l5G0KqqCMJ9/eY.0Tj7US4DSwgW', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (13, 'hank', '2015-06-20 14:46:50.439888', '2015-06-20 14:46:50.439888', 'sophia.bednar@west.biz', '$2a$10$3K6pWZVuD1ZmhY.y11XXK.dwaB/Im9YjwF8x.xHvRj7oy1BnBADHa', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (14, 'aniyah', '2015-06-20 14:46:50.501999', '2015-06-20 14:46:50.501999', 'remington@corkery.net', '$2a$10$vLmxJiRGRole1wVFyXYP4.5zBJ7kclw8FMHEyiSlpy939DiRzteDu', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (15, 'daron', '2015-06-20 14:46:50.564257', '2015-06-20 14:46:50.564257', 'francis@stanton.name', '$2a$10$.E/qjiW14jFcnJmOpKKdR.M.voCGU.wCqD/96ka1omPTub2Yf8sy.', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (16, 'winona_schowalter', '2015-06-20 14:46:50.626473', '2015-06-20 14:46:50.626473', 'charlotte@pfannerstill.com', '$2a$10$paHtYSzYDOLJ.QAY90q0IeAxvgylFjeHGESsATxLfxyeYIF3rcNVy', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.1ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (17, 'braulio', '2015-06-20 14:46:50.688991', '2015-06-20 14:46:50.688991', 'jaqueline_hermiston@littel.org', '$2a$10$PCNI/P5itMzCI4YbEYos5eLr/A6OazVTnLMB4i3ciKhSm6AjTc46a', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (18, 'caleigh', '2015-06-20 14:46:50.755938', '2015-06-20 14:46:50.755938', 'claude@weimannpouros.name', '$2a$10$Uo14NPLh2iGSslb8eF5Iqebz9Fb2SnxhOcUTQuhy0cjUOtDh/RWzW', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (19, 'brandy_gulgowski', '2015-06-20 14:46:50.821378', '2015-06-20 14:46:50.821378', 'rebeka.shields@quigley.org', '$2a$10$7O8tnBWA7bQsGEAK3RjbBuWUz8LO7S2AiMz0VsB0AcmwN45RC6AJG', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (20, 'theresia', '2015-06-20 14:46:50.884003', '2015-06-20 14:46:50.884003', 'trycia.hodkiewicz@gorczany.info', '$2a$10$F5nZUWZns7EQkDiQ.OvmNO940usjc6ikGwPS0rgWrC9/K/l0qb/O.', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (21, 'earnestine', '2015-06-20 14:46:50.949884', '2015-06-20 14:46:50.949884', 'hazle@lehner.com', '$2a$10$nmH2Xw3T//C7Zsh2buVaZuAie/5EyYnQmMbpyETj7lHt.0qdyzOVm', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (22, 'arvilla', '2015-06-20 14:46:51.015462', '2015-06-20 14:46:51.015462', 'josefina@schmidt.com', '$2a$10$Pmqif5J5BCvTrWFq2TzV8eWnmyBVck7ihamBdm.wPSbDaPKpv3pnm', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.1ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (23, 'jane.crist', '2015-06-20 14:46:51.078132', '2015-06-20 14:46:51.078132', 'amalia.breitenberg@glover.name', '$2a$10$C8gjtEzavnhpkOgzlNJ0L.ICciaNhDa5bGGXGsyfAHGZuELZsHnsi', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.1ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (24, 'dylan.wyman', '2015-06-20 14:46:51.140519', '2015-06-20 14:46:51.140519', 'noel.ledner@raudickens.info', '$2a$10$7aw8Z8d6b2vfX5GGRLG20OJhtVXmUJbz8vtCcQ1dMcA0ppGqlPAbO', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.1ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (25, 'harold', '2015-06-20 14:46:51.205868', '2015-06-20 14:46:51.205868', 'bryce_volkman@boylepowlowski.biz', '$2a$10$zMvJU4xc5w/0xG5bTHfvNub9quBwdVAxsR7h/TNpcS8rq43W7.53.', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.1ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (26, 'lois.rogahn', '2015-06-20 14:46:51.271467', '2015-06-20 14:46:51.271467', 'colten.goyette@west.org', '$2a$10$7IYyF9bzeZnlgfmC88jLLuMzIHwEA9h7MGEgDHWdyjanD2cZoaASe', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.1ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (27, 'jayson_ko', '2015-06-20 14:46:51.338006', '2015-06-20 14:46:51.338006', 'robb@harris.org', '$2a$10$x/Vu4hvJFNWDioQLrv6Vke6QZmirTeDrxV48y5TVeP9gyeh0wBdT.', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (28, 'cora', '2015-06-20 14:46:51.400576', '2015-06-20 14:46:51.400576', 'kennith_bernier@dietrich.info', '$2a$10$7cxUqNUfMUeEogtpqxpOSOOK6t2VLumo69pb/pDNEUhzBXg.Kv8j6', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (29, 'irma.mann', '2015-06-20 14:46:51.469495', '2015-06-20 14:46:51.469495', 'coleman@hettingerstiedemann.net', '$2a$10$/xE2AlCeXPSiinfQNmayTOc6dAb2T1qSRkM9BozmU9Mmwr/Fj7HWK', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (30, 'hanna', '2015-06-20 14:46:51.534864', '2015-06-20 14:46:51.534864', 'melisa@johnsongrant.info', '$2a$10$mUUdnm1zVSwHSWWQLGpkqO7B0PWX6xwPUfDWJAbm/fD/.o3n.u7/W', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (31, 'martine.cain', '2015-06-20 14:46:51.597331', '2015-06-20 14:46:51.597331', 'chase@oberbrunnerwilkinson.biz', '$2a$10$o9lAUPHU2THEMEgempXBbOZjA1QUecQMabyYY77Otg8JmjXW/e0JG', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (32, 'theron', '2015-06-20 14:46:51.663024', '2015-06-20 14:46:51.663024', 'afton.emard@damorethiel.net', '$2a$10$PlQclU/jDgkNpBUN0nxMOeLYuTIt2vK2T.Zt1b5UCzTM2TirtQXB.', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (33, 'kaylie_schimmel', '2015-06-20 14:46:51.732998', '2015-06-20 14:46:51.732998', 'mona@ziemann.info', '$2a$10$j5MbfJQFdm7Lte9udhDTSOlr2ilOIFDvGnJpAkEVCKDltfW7SXgdu', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (34, 'clair.rempel', '2015-06-20 14:46:51.798407', '2015-06-20 14:46:51.798407', 'rosemarie.koelpin@nienow.org', '$2a$10$Z1k4Sl.uHtqN887kOWbAcen47K1zSWE0Wb4RRBB3GxqNE8Pa0WQhG', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (35, 'teresa', '2015-06-20 14:46:51.870265', '2015-06-20 14:46:51.870265', 'reed@borer.biz', '$2a$10$6.lA4n3yabvjPI/1CQuBqeKZq.P0.PziqIsjXmf1qyZ2/JeAfU0IW', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (36, 'brenda', '2015-06-20 14:46:51.938659', '2015-06-20 14:46:51.938659', 'harley_huel@reilly.name', '$2a$10$HYmEaFmWDIZndJqDhorlEOrk9vTIyc7UiZBjB/rTnQCHB6ayLk4qC', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (37, 'sidney_predovic', '2015-06-20 14:46:52.004438', '2015-06-20 14:46:52.004438', 'maria@deckow.biz', '$2a$10$yUXcuEaA8Ujzasv6G/jzwOPV0z/odmZOPDg5uHeutzfgglAPrOaF6', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (38, 'isaac', '2015-06-20 14:46:52.072570', '2015-06-20 14:46:52.072570', 'harvey_yundt@dubuque.com', '$2a$10$WrdathYBcpGCOpHzcPCfCOoqie6JKtT2BI.j9yV.6fuR.In3.jNDq', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (39, 'ubaldo_stracke', '2015-06-20 14:46:52.135178', '2015-06-20 14:46:52.135178', 'laron@berge.biz', '$2a$10$iwM4jjvsrxL60E1/wbkvD.mrSYMuXr6GsEJV1DCmgrrNl/M8LI1nq', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (40, 'loren', '2015-06-20 14:46:52.197575', '2015-06-20 14:46:52.197575', 'neva@bergstrom.com', '$2a$10$QiGvjkdSinbNjm616ckY/.1dPCDg01qJwCwTh5reylkECJTXaDI6y', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (41, 'addison', '2015-06-20 14:46:52.263264', '2015-06-20 14:46:52.263264', 'amelia@pricewaelchi.biz', '$2a$10$7ZO2OHsMEmKLA3OSNNbC1emcr3My0kuIOA3vVZfpEd.unZfFBrH6m', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (42, 'stephen.jast', '2015-06-20 14:46:52.327821', '2015-06-20 14:46:52.327821', 'lauryn@berniercollier.info', '$2a$10$MGd0gQ2HcphaWQPVlChEaO7q9ifsFdJWWnY/lUtakWZmOwHQ3aHvK', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (43, 'elliot.swaniawski', '2015-06-20 14:46:52.395982', '2015-06-20 14:46:52.395982', 'rosamond@kohler.name', '$2a$10$s1tmbkOVPK0m0T/FRSJd1OtYaBTMKf.11177No6tg7oqvJL/U8Dse', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (44, 'florence_gleichner', '2015-06-20 14:46:52.461647', '2015-06-20 14:46:52.461647', 'lenore@daniel.info', '$2a$10$maqgK85ASDhANulCuREDbu4VXccjNW.uh7.xdCsaSPm/TV5qVfFBi', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.1ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (45, 'mayra_schiller', '2015-06-20 14:46:52.527510', '2015-06-20 14:46:52.527510', 'candida@king.com', '$2a$10$fTmSLLEdAjmKk4F9A3LvhOWgAA4IKXoIZCey2BqvFHFIdHLc5Hm7.', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.1ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (46, 'dorian', '2015-06-20 14:46:52.590127', '2015-06-20 14:46:52.590127', 'howard_graham@heller.com', '$2a$10$0YGNMprWUCkSJFUS.iHoW./i4zoqE/mp0swW9NKBawx5R84zePVcu', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.1ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (47, 'lorenzo.ohara', '2015-06-20 14:46:52.658596', '2015-06-20 14:46:52.658596', 'keira_towne@kohler.info', '$2a$10$B79nSoBnL4ZWebj9c9AlOeH40NgwyAIOBI2W9e.6anYwC2oTmMcK6', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (48, 'pedro_schuster', '2015-06-20 14:46:52.721161', '2015-06-20 14:46:52.721161', 'breanna@lockmanswaniawski.com', '$2a$10$kuGNe3.29fUeGVLtBopveueHlCONEsHcvHpNGlHDE1fQKPsZgG7DS', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (49, 'gilbert', '2015-06-20 14:46:52.783588', '2015-06-20 14:46:52.783588', 'maiya@koelpin.com', '$2a$10$RW3zYnfV.RlEQypCe7o2gOASkAVHT/KA9eOcf5199tx1jjxrVQpd2', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (50, 'clyde', '2015-06-20 14:46:52.849062', '2015-06-20 14:46:52.849062', 'pamela.mitchell@hintz.biz', '$2a$10$zsgrTP8z7eBZyq.zvhgIA.stdFXKSuqv3oDGLbLMK7q9ZL5//5zPG', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)[0m
[1m[35m (0.0ms)[0m INSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (51, 'michale.simonis', '2015-06-20 14:46:52.915678', '2015-06-20 14:46:52.915678', 'eli_blanda@kiehn.info', '$2a$10$3ZlfUFKYzU4H8DsdVmadj.rrRPUraw2EQx4TiF1bWr8I04BOSkcjK', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'f', 0, 0, NULL)
[1m[36m (0.0ms)[0m [1mINSERT INTO "users" ("id","nickname","created_at","updated_at","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","sign_in_count","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","admin","coins","requests_today","avatar") VALUES (52, 'peter', '2015-06-24 12:59:49.472133', '2015-07-23 19:18:08.632427', 'peter@son.de', '$2a$10$O1XsP2iZSs5k69GdtHVobuz3rSWBDAS7oo2qppIniP2oPtpsy2VKW', NULL, NULL, NULL, 7, '2015-07-23 19:14:43.476707', '2015-07-03 15:50:10.166389', '127.0.0.1', '127.0.0.1', 'f', 0, 13, NULL)[0m
[1m[35m (0.2ms)[0m DROP TABLE "ausers"
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150910123057"]]
[1m[35m (1.4ms)[0m commit transaction
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Started POST “/users” for 127.0.0.1 at 2015-09-10 14:32:10 +0200
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
Processing by Devise::RegistrationsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"vFks+8nnDqvC1ZHTXTkxBgsPKp/VfjCkDdcVyKFSD94=", "user"=>{"nickname"=>"Jorg", "email"=>"jorg@jorg.en", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "avatar"=>#<ActionDispatch::Http::UploadedFile:0x007f92c81da6e8 @tempfile=#<Tempfile:/var/folders/z8/gpslyc_s77vcxt36x74h30tc0000gn/T/RackMultipart20150910-13618-vlh4oj>, @original_filename="image004.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"user[avatar]\"; filename=\"image004.jpg\"\r\nContent-Type: image/jpeg\r\n">, "community_terms"=>"1"}, "commit"=>"Sign up"}
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jorg@jorg.en' LIMIT 1
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('Jorg') LIMIT 1[0m
[1m[35m (0.1ms)[0m rollback transaction
Completed 500 Internal Server Error in 84ms
TypeError (no implicit conversion of ActionDispatch::Http::UploadedFile into String):
app/models/user.rb:16:in `convert_avatar' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (54.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (70.6ms)
Started POST “/users” for 127.0.0.1 at 2015-09-10 14:32:43 +0200 Processing by Devise::RegistrationsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"vFks+8nnDqvC1ZHTXTkxBgsPKp/VfjCkDdcVyKFSD94=", "user"=>{"nickname"=>"Jorg", "email"=>"jorg@jorg.en", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "avatar"=>#<ActionDispatch::Http::UploadedFile:0x007f92c7fc9548 @tempfile=#<Tempfile:/var/folders/z8/gpslyc_s77vcxt36x74h30tc0000gn/T/RackMultipart20150910-13618-ff1vzn>, @original_filename="image004.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"user[avatar]\"; filename=\"image004.jpg\"\r\nContent-Type: image/jpeg\r\n">, "community_terms"=>"1"}, "commit"=>"Sign up"}
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'jorg@jorg.en' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('Jorg') LIMIT 1[0m
Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (0.6ms)[0m INSERT INTO "users" ("avatar", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["avatar", "IzxBY3Rpb25EaXNwYXRjaDo6SHR0cDo6VXBsb2FkZWRGaWxlOjB4MDA3Zjky\nYzdmYzk1NDg+\n"], ["created_at", Thu, 10 Sep 2015 12:32:43 UTC +00:00], ["email", "jorg@jorg.en"], ["encrypted_password", "$2a$10$u2jqABQotuKPYN18Va/Om.USq9pqlRjakkgi.ja7On4DwuWT/ulca"], ["nickname", "Jorg"], ["updated_at", Thu, 10 Sep 2015 12:32:43 UTC +00:00]]
[1m[36m (1.5ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
Binary data inserted for `string` type on column `last_sign_in_ip` Binary data inserted for `string` type on column `current_sign_in_ip`
[1m[36mSQL (0.8ms)[0m [1mUPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "avatar" = ?, "updated_at" = ? WHERE "users"."id" = 53[0m [["last_sign_in_at", Thu, 10 Sep 2015 12:32:43 UTC +00:00], ["current_sign_in_at", Thu, 10 Sep 2015 12:32:43 UTC +00:00], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["avatar", "SXp4QlkzUnBiMjVFYVhOd1lYUmphRG82U0hSMGNEbzZWWEJzYjJGa1pXUkdh\nV3hsT2pCNE1EQTNaamt5Cll6ZG1ZemsxTkRnKwo=\n"], ["updated_at", Thu, 10 Sep 2015 12:32:43 UTC +00:00]] [1m[35m (0.6ms)[0m commit transaction
Redirected to localhost:3000/ Completed 302 Found in 95ms (ActiveRecord: 4.0ms)
Started GET “/” for 127.0.0.1 at 2015-09-10 14:32:43 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (22.3ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (1.0ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.9ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (7.6ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___536453388460758653_70134169285040 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.8ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (36.1ms) Rendered welcome/index.html.erb within layouts/application (139.4ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 53 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.0ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 162ms (Views: 149.3ms | ActiveRecord: 5.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:32:43 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:32:43 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:32:43 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:32:43 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:32:43 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:32:43 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:32:43 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:32:43 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:32:43 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:32:43 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:32:43 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:32:43 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:32:43 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:32:43 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:32:43 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:32:43 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:32:43 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:32:43 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:32:43 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:32:43 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:32:43 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:32:43 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:32:43 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:32:43 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:32:43 +0200
Started GET “/users/53” for 127.0.0.1 at 2015-09-10 14:32:45 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"53"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "53"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 53]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 53]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 53 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (3.9ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 16ms (Views: 13.6ms | ActiveRecord: 0.6ms)
Started GET “/users/53” for 127.0.0.1 at 2015-09-10 14:33:37 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"53"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "53"]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 53]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 53]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 53 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (5.5ms)
Rendered shared/_header.html.erb (1.5ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 91ms (Views: 87.9ms | ActiveRecord: 0.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:37 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:37 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:37 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:37 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:37 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:37 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:37 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:37 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:37 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:37 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:37 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:37 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:37 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:37 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:37 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:33:37 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:33:37 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:33:37 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:33:37 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:33:37 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:33:37 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:33:37 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:33:37 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:33:37 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:33:37 +0200
Started GET “/users/53” for 127.0.0.1 at 2015-09-10 14:33:48 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"53"}
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "53"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 53]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 53]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 53 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (7.9ms)
Rendered shared/_header.html.erb (1.5ms)
Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 24ms (Views: 19.8ms | ActiveRecord: 0.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:48 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:48 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:48 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:48 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:48 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:48 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:48 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:48 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:48 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:48 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:48 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:48 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:48 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:48 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:33:48 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:33:48 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:33:49 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:33:49 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:33:49 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:33:49 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:33:49 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:33:49 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:33:49 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:33:49 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:33:49 +0200
Started GET “/images/SXp4QlkzUnBiMjVFYVhOd1lYUmphRG82U0hSMGNEbzZWWEJzYjJGa1pXUkdhV3hsT2pCNE1EQTNaamt5Cll6ZG1ZemsxTkRnKwo=” for 127.0.0.1 at 2015-09-10 14:33:49 +0200
ActionController::RoutingError (No route matches [GET] “/images/SXp4QlkzUnBiMjVFYVhOd1lYUmphRG82U0hSMGNEbzZWWEJzYjJGa1pXUkdhV3hsT2pCNE1EQTNaamt5Cll6ZG1ZemsxTkRnKwo=”):
actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (65.2ms)
Started GET “/users/53” for 127.0.0.1 at 2015-09-10 14:33:57 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"53"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "53"]]
Rendered users/show.html.erb within layouts/application (1.7ms)
Completed 500 Internal Server Error in 5ms
ActionView::Template::Error (undefined method `decode' for Base64:Module):
2: <div class="l-box"> 3: <div class="pure-g"> 4: <div class="pure-u-1-3"> 5: <%= image_tag Base64.decode @user.avatar %> 6: </div> 7: <div class="pure-u-2-3"> 8: <h1><%= @user.nickname %></h1> app/views/users/show.html.erb:5:in `_app_views_users_show_html_erb__2517845177570687483_70134198781260' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.6ms)
Started GET “/users/53” for 127.0.0.1 at 2015-09-10 14:34:07 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"53"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "53"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 53]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 53]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 53 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (11.9ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 96ms (Views: 20.3ms | ActiveRecord: 1.1ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:08 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:08 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:08 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:08 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:08 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:08 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:08 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:08 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:08 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:08 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:08 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:08 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:08 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:08 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:08 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:08 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:08 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:08 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:08 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:08 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:08 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:08 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:08 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:08 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:08 +0200
Started GET “/images/IzxBY3Rpb25EaXNwYXRjaDo6SHR0cDo6VXBsb2FkZWRGaWxlOjB4MDA3ZjkyYzdmYzk1NDg+” for 127.0.0.1 at 2015-09-10 14:34:08 +0200
ActionController::RoutingError (No route matches [GET] “/images/IzxBY3Rpb25EaXNwYXRjaDo6SHR0cDo6VXBsb2FkZWRGaWxlOjB4MDA3ZjkyYzdmYzk1NDg+”):
actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (70.1ms)
Started GET “/images/IzxBY3Rpb25EaXNwYXRjaDo6SHR0cDo6VXBsb2FkZWRGaWxlOjB4MDA3ZjkyYzdmYzk1NDg+” for 127.0.0.1 at 2015-09-10 14:34:08 +0200
ActionController::RoutingError (No route matches [GET] “/images/IzxBY3Rpb25EaXNwYXRjaDo6SHR0cDo6VXBsb2FkZWRGaWxlOjB4MDA3ZjkyYzdmYzk1NDg+”):
actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (106.8ms)
Started GET “/users/53” for 127.0.0.1 at 2015-09-10 14:34:15 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"53"}
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "53"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 53]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 53]]
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 53 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (11.4ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 25ms (Views: 22.5ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:15 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:15 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:15 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:15 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:15 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:15 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:15 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:15 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:15 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:15 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:15 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:15 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:15 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:15 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:15 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:15 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:15 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:15 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:15 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:15 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:15 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:15 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:15 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:15 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:15 +0200
Started GET “/images/IzxBY3Rpb25EaXNwYXRjaDo6SHR0cDo6VXBsb2FkZWRGaWxlOjB4MDA3ZjkyYzdmYzk1NDg+” for 127.0.0.1 at 2015-09-10 14:34:15 +0200
ActionController::RoutingError (No route matches [GET] “/images/IzxBY3Rpb25EaXNwYXRjaDo6SHR0cDo6VXBsb2FkZWRGaWxlOjB4MDA3ZjkyYzdmYzk1NDg+”):
actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (41.3ms)
Started GET “/images/IzxBY3Rpb25EaXNwYXRjaDo6SHR0cDo6VXBsb2FkZWRGaWxlOjB4MDA3ZjkyYzdmYzk1NDg+” for 127.0.0.1 at 2015-09-10 14:34:16 +0200
ActionController::RoutingError (No route matches [GET] “/images/IzxBY3Rpb25EaXNwYXRjaDo6SHR0cDo6VXBsb2FkZWRGaWxlOjB4MDA3ZjkyYzdmYzk1NDg+”):
actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (126.4ms)
Started GET “/users/53” for 127.0.0.1 at 2015-09-10 14:34:19 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"53"}
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "53"]]
Rendered users/show.html.erb within layouts/application (1.8ms)
Completed 500 Internal Server Error in 6ms
ActionView::Template::Error (undefined method `encode' for Base64:Module):
2: <div class="l-box"> 3: <div class="pure-g"> 4: <div class="pure-u-1-3"> 5: <%= image_tag Base64.encode @user.avatar %> 6: </div> 7: <div class="pure-u-2-3"> 8: <h1><%= @user.nickname %></h1> app/views/users/show.html.erb:5:in `_app_views_users_show_html_erb__2517845177570687483_70134196061840' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.7ms)
Started GET “/users/53” for 127.0.0.1 at 2015-09-10 14:34:24 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"53"}
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "53"]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 53]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 53]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 53 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (8.3ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 19ms (Views: 17.2ms | ActiveRecord: 0.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:24 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:24 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:24 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:24 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:24 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:24 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:24 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:24 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:24 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:24 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:24 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:25 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:25 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:25 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:25 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:25 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:25 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:25 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:25 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:25 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:25 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:25 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:25 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:25 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:25 +0200
Started GET “/images/U1hwNFFsa3pVbkJpTWpWRllWaE9kMWxZVW1waFJHODJVMGhTTUdORWJ6WldXRUp6WWpKR2ExcFhVa2RoClYzaHNUMnBDTkUxRVFUTmFhbXQ1Q2xsNlpHMVplbXN4VGtSbkt3bz0K” for 127.0.0.1 at 2015-09-10 14:34:25 +0200
ActionController::RoutingError (No route matches [GET] “/images/U1hwNFFsa3pVbkJpTWpWRllWaE9kMWxZVW1waFJHODJVMGhTTUdORWJ6WldXRUp6WWpKR2ExcFhVa2RoClYzaHNUMnBDTkUxRVFUTmFhbXQ1Q2xsNlpHMVplbXN4VGtSbkt3bz0K”):
actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (121.5ms)
Started GET “/users/53” for 127.0.0.1 at 2015-09-10 14:34:30 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"53"}
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "53"]]
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 53]]
[1m[36mGameCode Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 53]]
[1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 53 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (17.2ms)
Rendered shared/_header.html.erb (2.0ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 36ms (Views: 30.7ms | ActiveRecord: 1.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:30 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:30 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:30 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:30 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:30 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:30 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:30 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:30 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:30 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:30 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:30 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:30 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:30 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:30 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:34:30 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:30 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:30 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:30 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:30 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:30 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:30 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:30 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:30 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:30 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:34:30 +0200
Started GET “/images/IzxBY3Rpb25EaXNwYXRjaDo6SHR0cDo6VXBsb2FkZWRGaWxlOjB4MDA3ZjkyYzdmYzk1NDg+” for 127.0.0.1 at 2015-09-10 14:34:30 +0200
ActionController::RoutingError (No route matches [GET] “/images/IzxBY3Rpb25EaXNwYXRjaDo6SHR0cDo6VXBsb2FkZWRGaWxlOjB4MDA3ZjkyYzdmYzk1NDg+”):
actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (74.1ms)
Started GET “/users/53” for 127.0.0.1 at 2015-09-10 14:35:00 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"53"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "53"]]
Rendered users/show.html.erb within layouts/application (0.6ms)
Completed 500 Internal Server Error in 4ms
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/views/users/show.html.erb:5: syntax error, unexpected tIVAR, expecting ')' …ase64,' + Base64.decode64 @user.avatar );@output_buffer.safe… … ^):
actionpack (4.0.8) lib/action_view/template.rb:299:in `module_eval' actionpack (4.0.8) lib/action_view/template.rb:299:in `compile' actionpack (4.0.8) lib/action_view/template.rb:248:in `block in compile!' actionpack (4.0.8) lib/action_view/template.rb:236:in `synchronize' actionpack (4.0.8) lib/action_view/template.rb:236:in `compile!' actionpack (4.0.8) lib/action_view/template.rb:142:in `block in render' activesupport (4.0.8) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.8) lib/action_view/template.rb:141:in `render' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:423:in `_run__39567764292138642__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__4191911351967724401__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (59.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (72.3ms)
Started GET “/users/53” for 127.0.0.1 at 2015-09-10 14:35:16 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"53"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "53"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 53]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 53]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 53 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (4.1ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (1.6ms)
Completed 200 OK in 18ms (Views: 15.3ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:16 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:17 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:17 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:17 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:17 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:17 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:17 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:17 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:17 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:17 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:17 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:17 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:17 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:17 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:17 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:17 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:17 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:17 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:17 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:17 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:17 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:17 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:17 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:17 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:17 +0200
Started GET “/users/53” for 127.0.0.1 at 2015-09-10 14:35:22 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"53"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "53"]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 53]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 53]]
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 53 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (6.9ms)
Rendered shared/_header.html.erb (1.7ms)
Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 29ms (Views: 24.7ms | ActiveRecord: 0.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:22 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:22 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:22 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:22 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:22 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:22 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:22 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:22 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:22 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:22 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:22 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:22 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:22 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:22 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:22 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:22 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:22 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:22 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:22 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:22 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:22 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:22 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:22 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:22 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:22 +0200
Started GET “/users/53” for 127.0.0.1 at 2015-09-10 14:35:43 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"53"}
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "53"]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 53]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 53]]
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 53 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (6.7ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 21ms (Views: 18.4ms | ActiveRecord: 0.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:43 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:43 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:43 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:43 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:43 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:43 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:43 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:43 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:43 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:43 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:43 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:43 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:43 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:43 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:43 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:43 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:43 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:43 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:43 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:43 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:43 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:43 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:43 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:43 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:43 +0200
Started GET “/users/53” for 127.0.0.1 at 2015-09-10 14:35:44 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"53"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "53"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 53]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 53]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 53 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (3.1ms)
Rendered shared/_header.html.erb (1.4ms)
Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 80ms (Views: 77.4ms | ActiveRecord: 0.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:44 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:44 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:44 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:44 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:44 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:44 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:44 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:44 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:44 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:44 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:44 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:44 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:44 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:44 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:44 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:44 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:44 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:44 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:44 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:44 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:44 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:44 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:44 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:44 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:44 +0200
Started GET “/users/53” for 127.0.0.1 at 2015-09-10 14:35:48 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"53"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "53"]]
[1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 53]]
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 53]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 53 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (11.8ms)
Rendered shared/_header.html.erb (1.8ms)
Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 36ms (Views: 32.4ms | ActiveRecord: 1.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:48 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:48 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:48 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:48 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:48 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:48 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:48 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:48 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:48 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:48 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:48 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:48 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:48 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:48 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:48 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:48 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:48 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:48 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:48 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:48 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:48 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:48 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:48 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:48 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:48 +0200
Started GET “/users/53” for 127.0.0.1 at 2015-09-10 14:35:52 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"53"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "53"]]
[1m[36m (1.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 53]]
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 53]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 53 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (13.5ms)
Rendered shared/_header.html.erb (2.1ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 36ms (Views: 31.3ms | ActiveRecord: 1.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:52 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:52 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:52 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:52 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:52 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:52 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:52 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:52 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:52 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:52 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:52 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:52 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:52 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:52 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:52 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:52 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:52 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:52 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:52 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:52 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:52 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:52 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:52 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:52 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:52 +0200
Started GET “/users/53” for 127.0.0.1 at 2015-09-10 14:35:56 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"53"}
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "53"]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 53]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 53]]
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 53 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (4.6ms)
Rendered shared/_header.html.erb (2.3ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 18ms (Views: 16.5ms | ActiveRecord: 0.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:56 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:56 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:56 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:56 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:56 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:56 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:56 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:56 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:56 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:56 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:56 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:56 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:56 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:56 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:35:56 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:56 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:56 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:56 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:56 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:56 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:56 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:56 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:56 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:56 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:35:56 +0200
Started GET “/users/53” for 127.0.0.1 at 2015-09-10 14:37:46 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"53"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "53"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 53]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 53]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 53 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (11.9ms)
Rendered shared/_header.html.erb (51.9ms)
Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 93ms (Views: 73.0ms | ActiveRecord: 1.1ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:37:47 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:37:47 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:37:47 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:37:47 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:37:47 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:37:47 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:37:47 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:37:47 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:37:47 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:37:47 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:37:47 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:37:47 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:37:47 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:37:47 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:37:47 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:37:47 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:37:47 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:37:47 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:37:47 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:37:47 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:37:47 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:37:47 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:37:47 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:37:47 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:37:47 +0200
Started DELETE “/users/sign_out” for 127.0.0.1 at 2015-09-10 14:37:48 +0200 Processing by Devise::SessionsController#destroy as HTML
Parameters: {"authenticity_token"=>"vFks+8nnDqvC1ZHTXTkxBgsPKp/VfjCkDdcVyKFSD94="}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 53 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35m (0.1ms)[0m rollback transaction
Completed 500 Internal Server Error in 4ms
Errno::ENOENT (No such file or directory - U1hwNFFsa3pVbkJpTWpWRllWaE9kMWxZVW1waFJHODJVMGhTTUdORWJ6WldX RUp6WWpKR2ExcFhVa2RoClYzaHNUMnBDTkUxRVFUTmFhbXQ1Q2xsNlpHMVpl bXN4VGtSbkt3bz0K ):
app/models/user.rb:17:in `initialize' app/models/user.rb:17:in `open' app/models/user.rb:17:in `convert_avatar' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.7ms)
Started DELETE “/users/sign_out” for 127.0.0.1 at 2015-09-10 14:38:03 +0200 Processing by Devise::SessionsController#destroy as HTML
Parameters: {"authenticity_token"=>"vFks+8nnDqvC1ZHTXTkxBgsPKp/VfjCkDdcVyKFSD94="}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 53 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
Completed 500 Internal Server Error in 17ms
Errno::ENOENT (No such file or directory - SXp4QlkzUnBiMjVFYVhOd1lYUmphRG82U0hSMGNEbzZWWEJzYjJGa1pXUkdh V3hsT2pCNE1EQTNaamt5Cll6ZG1ZemsxTkRnKwo= ):
app/models/user.rb:16:in `initialize' app/models/user.rb:16:in `open' app/models/user.rb:16:in `convert_avatar' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.7ms)
Started DELETE “/users/sign_out” for 127.0.0.1 at 2015-09-10 14:38:19 +0200 Processing by Devise::SessionsController#destroy as HTML
Parameters: {"authenticity_token"=>"vFks+8nnDqvC1ZHTXTkxBgsPKp/VfjCkDdcVyKFSD94="}
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 53 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35m (0.1ms)[0m commit transaction
Redirected to localhost:3000/ Completed 302 Found in 27ms (ActiveRecord: 0.7ms)
Started GET “/” for 127.0.0.1 at 2015-09-10 14:38:19 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (78.4ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (1.0ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.2ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (4.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___536453388460758653_70134169285040 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (18.3ms) Rendered welcome/index.html.erb within layouts/application (108.7ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 126ms (Views: 116.3ms | ActiveRecord: 3.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:38:19 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:38:19 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:38:19 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:38:19 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:38:19 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:38:19 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:38:19 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:38:19 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:38:19 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:38:19 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:38:19 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:38:19 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:38:19 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:38:19 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:38:19 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:38:19 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:38:19 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:38:19 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:38:19 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:38:19 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:38:19 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:38:19 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:38:19 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:38:19 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:38:19 +0200
Started GET “/users/sign_up” for 127.0.0.1 at 2015-09-10 14:38:28 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.9ms) Rendered devise/registrations/new.html.erb within layouts/application (7.0ms) Rendered shared/_header.html.erb (1.3ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 63ms (Views: 61.4ms | ActiveRecord: 0.0ms)
Started POST “/users” for 127.0.0.1 at 2015-09-10 14:38:54 +0200 Processing by Devise::RegistrationsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"sbeLFESZze/1oX3LOWqiQC3lZ1mechUSDe0XLPEEPqU=", "user"=>{"nickname"=>"DocJohnson", "email"=>"doc@johnson.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "avatar"=>#<ActionDispatch::Http::UploadedFile:0x007f92c79597f8 @tempfile=#<Tempfile:/var/folders/z8/gpslyc_s77vcxt36x74h30tc0000gn/T/RackMultipart20150910-13618-53ixlm>, @original_filename="my-nigga-thumb.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"user[avatar]\"; filename=\"my-nigga-thumb.jpg\"\r\nContent-Type: image/jpeg\r\n">, "community_terms"=>"1"}, "commit"=>"Sign up"}
[1m[35m (0.1ms)[0m begin transaction
[1m[36mUser Exists (0.3ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'doc@johnson.com' LIMIT 1[0m
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('DocJohnson') LIMIT 1
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
Completed 500 Internal Server Error in 71ms
TypeError (no implicit conversion of ActionDispatch::Http::UploadedFile into String):
app/models/user.rb:16:in `initialize' app/models/user.rb:16:in `open' app/models/user.rb:16:in `convert_avatar' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.6ms)
Started POST “/users” for 127.0.0.1 at 2015-09-10 14:39:40 +0200 Processing by Devise::RegistrationsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"sbeLFESZze/1oX3LOWqiQC3lZ1mechUSDe0XLPEEPqU=", "user"=>{"nickname"=>"DocJohnson", "email"=>"doc@johnson.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "avatar"=>#<ActionDispatch::Http::UploadedFile:0x007f92c8228fc8 @tempfile=#<Tempfile:/var/folders/z8/gpslyc_s77vcxt36x74h30tc0000gn/T/RackMultipart20150910-13618-19lpall>, @original_filename="my-nigga-thumb.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"user[avatar]\"; filename=\"my-nigga-thumb.jpg\"\r\nContent-Type: image/jpeg\r\n">, "community_terms"=>"1"}, "commit"=>"Sign up"}
[1m[35m (0.2ms)[0m begin transaction
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'doc@johnson.com' LIMIT 1[0m
[1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('DocJohnson') LIMIT 1
Binary data inserted for `string` type on column `encrypted_password`
[1m[36mSQL (1.4ms)[0m [1mINSERT INTO "users" ("avatar", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["avatar", "/9j/4AAQSkZJRgABAQEASABIAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4w\nICh1c2luZyBJSkcgSlBFRyB2NjIpLCBxdWFsaXR5ID0gNzUK/+IMWElDQ19Q\nUk9GSUxFAAEBAAAMSExpbm8CEAAAbW50clJHQiBYWVogB84AAgAJAAYAMQAA\nYWNzcE1TRlQAAAAASUVDIHNSR0IAAAAAAAAAAAAAAAAAAPbWAAEAAAAA0y1I\nUCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\nAAAAAAARY3BydAAAAVAAAAAzZGVzYwAAAYQAAABsd3RwdAAAAfAAAAAUYmtw\ndAAAAgQAAAAUclhZWgAAAhgAAAAUZ1hZWgAAAiwAAAAUYlhZWgAAAkAAAAAU\nZG1uZAAAAlQAAABwZG1kZAAAAsQAAACIdnVlZAAAA0wAAACGdmlldwAAA9QA\nAAAkbHVtaQAAA/gAAAAUbWVhcwAABAwAAAAkdGVjaAAABDAAAAAMclRSQwAA\nBDwAAAgMZ1RSQwAABDwAAAgMYlRSQwAABDwAAAgMdGV4dAAAAABDb3B5cmln\naHQgKGMpIDE5OTggSGV3bGV0dC1QYWNrYXJkIENvbXBhbnkAAGRlc2MAAAAA\nAAAAEnNSR0IgSUVDNjE5NjYtMi4xAAAAAAAAAAAAAAASc1JHQiBJRUM2MTk2\nNi0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\nAAAAAAAAAAAAAFhZWiAAAAAAAADzUQABAAAAARbMWFlaIAAAAAAAAAAAAAAA\nAAAAAABYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABja\nWFlaIAAAAAAAACSgAAAPhAAAts9kZXNjAAAAAAAAABZJRUMgaHR0cDovL3d3\ndy5pZWMuY2gAAAAAAAAAAAAAABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAA\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVz\nYwAAAAAAAAAuSUVDIDYxOTY2LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3Bh\nY2UgLSBzUkdCAAAAAAAAAAAAAAAuSUVDIDYxOTY2LTIuMSBEZWZhdWx0IFJH\nQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRl\nc2MAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2\nMTk2Ni0yLjEAAAAAAAAAAAAAACxSZWZlcmVuY2UgVmlld2luZyBDb25kaXRp\nb24gaW4gSUVDNjE5NjYtMi4xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB2\naWV3AAAAAAATpP4AFF8uABDPFAAD7cwABBMLAANcngAAAAFYWVogAAAAAABM\nCVYAUAAAAFcf521lYXMAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAKPAAAA\nAnNpZyAAAAAAQ1JUIGN1cnYAAAAAAAAEAAAAAAUACgAPABQAGQAeACMAKAAt\nADIANwA7AEAARQBKAE8AVABZAF4AYwBoAG0AcgB3AHwAgQCGAIsAkACVAJoA\nnwCkAKkArgCyALcAvADBAMYAywDQANUA2wDgAOUA6wDwAPYA+wEBAQcBDQET\nARkBHwElASsBMgE4AT4BRQFMAVIBWQFgAWcBbgF1AXwBgwGLAZIBmgGhAakB\nsQG5AcEByQHRAdkB4QHpAfIB+gIDAgwCFAIdAiYCLwI4AkECSwJUAl0CZwJx\nAnoChAKOApgCogKsArYCwQLLAtUC4ALrAvUDAAMLAxYDIQMtAzgDQwNPA1oD\nZgNyA34DigOWA6IDrgO6A8cD0wPgA+wD+QQGBBMEIAQtBDsESARVBGMEcQR+\nBIwEmgSoBLYExATTBOEE8AT+BQ0FHAUrBToFSQVYBWcFdwWGBZYFpgW1BcUF\n1QXlBfYGBgYWBicGNwZIBlkGagZ7BowGnQavBsAG0QbjBvUHBwcZBysHPQdP\nB2EHdAeGB5kHrAe/B9IH5Qf4CAsIHwgyCEYIWghuCIIIlgiqCL4I0gjnCPsJ\nEAklCToJTwlkCXkJjwmkCboJzwnlCfsKEQonCj0KVApqCoEKmAquCsUK3Arz\nCwsLIgs5C1ELaQuAC5gLsAvIC+EL+QwSDCoMQwxcDHUMjgynDMAM2QzzDQ0N\nJg1ADVoNdA2ODakNww3eDfgOEw4uDkkOZA5/DpsOtg7SDu4PCQ8lD0EPXg96\nD5YPsw/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExExEU8RbRGMEaoRyRHoEgcS\nJhJFEmQShBKjEsMS4xMDEyMTQxNjE4MTpBPFE+UUBhQnFEkUahSLFK0UzhTw\nFRIVNBVWFXgVmxW9FeAWAxYmFkkWbBaPFrIW1hb6Fx0XQRdlF4kXrhfSF/cY\nGxhAGGUYihivGNUY+hkgGUUZaxmRGbcZ3RoEGioaURp3Gp4axRrsGxQbOxtj\nG4obshvaHAIcKhxSHHscoxzMHPUdHh1HHXAdmR3DHeweFh5AHmoelB6+Hukf\nEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHCFIIXUhoSHOIfsiJyJVIoIiryLd\nIwojOCNmI5QjwiPwJB8kTSR8JKsk2iUJJTglaCWXJccl9yYnJlcmhya3Jugn\nGCdJJ3onqyfcKA0oPyhxKKIo1CkGKTgpaymdKdAqAio1KmgqmyrPKwIrNitp\nK50r0SwFLDksbiyiLNctDC1BLXYtqy3hLhYuTC6CLrcu7i8kL1ovkS/HL/4w\nNTBsMKQw2zESMUoxgjG6MfIyKjJjMpsy1DMNM0YzfzO4M/E0KzRlNJ402DUT\nNU01hzXCNf02NzZyNq426TckN2A3nDfXOBQ4UDiMOMg5BTlCOX85vDn5OjY6\ndDqyOu87LTtrO6o76DwnPGU8pDzjPSI9YT2hPeA+ID5gPqA+4D8hP2E/oj/i\nQCNAZECmQOdBKUFqQaxB7kIwQnJCtUL3QzpDfUPARANER0SKRM5FEkVVRZpF\n3kYiRmdGq0bwRzVHe0fASAVIS0iRSNdJHUljSalJ8Eo3Sn1KxEsMS1NLmkvi\nTCpMcky6TQJNSk2TTdxOJU5uTrdPAE9JT5NP3VAnUHFQu1EGUVBRm1HmUjFS\nfFLHUxNTX1OqU/ZUQlSPVNtVKFV1VcJWD1ZcVqlW91dEV5JX4FgvWH1Yy1ka\nWWlZuFoHWlZaplr1W0VblVvlXDVchlzWXSddeF3JXhpebF69Xw9fYV+zYAVg\nV2CqYPxhT2GiYfViSWKcYvBjQ2OXY+tkQGSUZOllPWWSZedmPWaSZuhnPWeT\nZ+loP2iWaOxpQ2maafFqSGqfavdrT2una/9sV2yvbQhtYG25bhJua27Ebx5v\neG/RcCtwhnDgcTpxlXHwcktypnMBc11zuHQUdHB0zHUodYV14XY+dpt2+HdW\nd7N4EXhueMx5KnmJeed6RnqlewR7Y3vCfCF8gXzhfUF9oX4BfmJ+wn8jf4R/\n5YBHgKiBCoFrgc2CMIKSgvSDV4O6hB2EgITjhUeFq4YOhnKG14c7h5+IBIhp\niM6JM4mZif6KZIrKizCLlov8jGOMyo0xjZiN/45mjs6PNo+ekAaQbpDWkT+R\nqJIRknqS45NNk7aUIJSKlPSVX5XJljSWn5cKl3WX4JhMmLiZJJmQmfyaaJrV\nm0Kbr5wcnImc951kndKeQJ6unx2fi5/6oGmg2KFHobaiJqKWowajdqPmpFak\nx6U4pammGqaLpv2nbqfgqFKoxKk3qamqHKqPqwKrdavprFys0K1ErbiuLa6h\nrxavi7AAsHWw6rFgsdayS7LCszizrrQltJy1E7WKtgG2ebbwt2i34LhZuNG5\nSrnCuju6tbsuu6e8IbybvRW9j74KvoS+/796v/XAcMDswWfB48JfwtvDWMPU\nxFHEzsVLxcjGRsbDx0HHv8g9yLzJOsm5yjjKt8s2y7bMNcy1zTXNtc42zrbP\nN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2\n2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3m\nlucf56noMui86Ubp0Opb6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM\n8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn+3f8B/yY/Sn9uv5L/tz/\nbf///9sAQwADAgIDAgIDAwMDBAMDBAUIBQUEBAUKBwcGCAwKDAwLCgsLDQ4S\nEA0OEQ4LCxAWEBETFBUVFQwPFxgWFBgSFBUU/9sAQwEDBAQFBAUJBQUJFA0L\nDRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQU\nFBQUFBQU/8IAEQgBMAEwAwERAAIRAQMRAf/EAB0AAAIDAQEBAQEAAAAAAAAA\nAAQFAwYHAgEIAAn/xAAaAQACAwEBAAAAAAAAAAAAAAACAwABBAUG/9oADAMB\nAAIQAxAAAAHAM5r3BFBOBpIM5kcZ33PF0GAnXXKqOzAO1Kw0BmHkua50V8hG\ngOsOXZcs2sxZoDnhJcA6CrO149wbLSVyyuaqGQO6FOHAZ0KWp3C+FQ54TQPF\npwNnC/KnAnb8+sq5sfR5OWkOhsVRxlbMWd1jErdyscJVhO8o0vqMypVlNsLU\ngQqSQbi5IUdcrUoVrGpieSSAYymRQxRzVcsP5LTnTtkACUByUzmGUNMVNNlf\nYnX4lMurxcw9DtIej58qZHJ/QG7ocmPheoA5iVLBtasrC5FXKksm62GeDovt\np+WcHSULdPJ5B4K7O2r3oCcbs0b8kBiGkapaIZ9MWPB5qz0usgH9YdLjMStR\nJj2XZv8AoxfEaNAkn3DpQZJ8xAWnCxldA1AwN21CC6nkPKqrnfenB8zcrpCU\nY0hEsgJ6Uk0BYtI3yN+Wq5c4F4R9yfoPML8VRCTNR/cG7Esq1xDmuXbu+rJ8\nlc3ptwLb+pyL3JlQMCBmtNQguU3O++PzPCqhiTmomo0xDiHF7EomsaPUpjJ3\nQx3ANAWxujFG8coThoZJOpCLIBi+wMoNGk2MiXQmCyS9tXXMW07O/Qd+I6Sr\npJOVNnDPdKcmm9PUES81Abfh3vYatiKZleNKAcHhgPIxsYpI7gTX0XXyCKnN\n11UmuwzH9KKA1pRln1WJGsiwTaM9ykIU/wASy6OXKEo6mp2qbuUaB8Z2XyPS\nkNkyaGObUkkr7MscAVghErwwBkYBo9ME7s6dtpNGQaSMlyyd3cRh7AVgMtEe\nOpunW2Sa4waOSuIUsBlLmFypcWOVHEGDosmfTpqXtk6PMmjgDjqeEoeCoNRe\nlSWLTp1vFajjKqb+LW9mMdoewQ7Eq5Bd8GBBLVBCwZ7GmKarJdnz7PXJrTkQ\niHML9De5tLMGiGMcnATQ8+h3l1SZNDUqMkCXJYRhRHryD2svLrpGurYl1X3c\nymbecu0K4gAkvq67OEifckYSWMsePWogVvdksGfURJWWIsufR7GLoNpRss4t\nklqpVfbltIE3wbClHUdnP5p1ky6bUkzaaQ1RRWImZ3CMtqfpcjPd+OHRnSmk\na0xmLUHSVf6rOU10nRe+fur1rxzuca+o0tANMJ2VOicGhgbCjNOfoauAKeR1\nBMybKEYUjp8yzYt2hc/dfsjWVXzojAhq6oJTXjQTOxY/0+fW92EAlSkHIFNR\ndyP82m+J13FTeMmmgvRkfW42mo3OwMHK7yHHTfwE0IzTsaQSLIPLO0a0iiwN\n3n1KjDQ+frKU45lelRrRHkRMB7AjXMx0Zcg73AjOBSiJJBIkD2fndW/A5VUX\nL05Bv5fFrdq0+kphn2HobxUSmJRQ4iFsIzVdNCiJKqorNi12zDv80ZQ0tizk\nxuiHQ06hMI7nEAcDAgfMvpvLKznMqSTwbsuHfsfO6tlFufasNC1Lq+rnazg6\nVYctESrTl3Ns7Z5agg5IDjMAwGNN0cNxkihMuP0Q8uumvWYEaZycXTJsntfp\ngqE28IeWLC+UfT+NDOcyGAUMLSuP3Lll1XWGniPnTu8IqxJpwVo9h2HF0eZG\nwHMYNmA3hgRY5gkaF1h2UDo2HbkmnBqfI7SxoO852VdnnIKX2UEE7YVziXTB\n+N/UeQCOehGAE2zate5HdiG3EK8BWL9Lm1R2NDsyckPcN4jZFISckIdLqtBh\nyDdUIceJPEN1R9CSpDv2LUXDNw6O6KzBJ4JBRcJ2oreOTpnb4HwGdq2515rn\nqajw+5d8O8O1jHXekbMg8w282lbef65RRkYDvYfBh5Au9FrgNaxmbRWSMXBJ\n0M5CGDqf4trfmdJolzygHPPJLUnBUsuuvPt3b87lL6+e+Z2ljsNJ6HLYI17B\nxO+4zG0tYBuP2ZSVHSwVnHT5Q+vGYZ9xnkLow/QJBK1jH8Zn8Uvu+LkFB4Dt\nDwdWy59FforJg1E0qEwEOq8DbCS/pDt8GlaVfKFw/kd440570eU3z69S4/YZ\nqjaUFoORub2AHlOo7cNR6PNijYjLhqi7qSBzRRwOhb7dfoUVAGSzk6df5vZs\ntOpBZc5YpmEZA4OwcI2/TGzltNnO+Jjgcmk8H09f0ZKX0cRYNunN6GgZG0xq\nlRhJozNIDTFoGMaTtzs1NjOVLo88R2VpD7K4aEqit2PWCVVxwLxWzVo1rF0T\n42rtzV9qngm7CY4/P9AiW9ty/ITVUBiZ436T43WyJWmk9Tm9W3tB2vExK9YJ\ngO3I6COs2roXI2FakaOhlL3Yans5unZ9oj01fRn1PldnWeN1Y5Xkn4WBtHMO\ntykm3PXasoG3LDohUQ/U5zjoc+8Zx+aTh0pnD+mU9b5+VmpxLhkeIcYIqmLG\nIRbWYMaL0eA2JehwjRJcDIbwlmgYt3Lc2e9LE65/Rf528DOZFthQety6R2OP\nIZsKMnPqaZNI6id97iLGpz9FuwaJFsoerZPV33RxfmSsouduh5tFjCksCumq\nq6UAtWZn0MEayAe2VocLu55NDhbvxB24AGBUTq7YdCYRTndQ6nMpnZ4vZSKS\naE8h9pfIhus9niZqoq4hhcNJYOAb9CeZ9XTvTgSriVfC25rJ0Dp5Sg1Z6aMv\n15DUPf5+gvurYnRdceyzqOCSfTnHamnoPLOkNlxFOskm7nVHr8f0hkleSDwb\nNNPJNNCrw1NfgI1t7gKLnYT6Y8n62sdcvOnziuQia7Njp6EUgRWvH9ONcLLF\nk6SVwXjm7dBy65zV04ZzzqyqhtvMtqJSxB2Ee7n8EvqSWr9hr4uzTR0DOZHl\nGTKgYNbiSIKKD9SeX9dJDpHrHTcPkerLup1V+GAx56joVTaG3ZOmGstGxbbA\novxqMcvO2Z6ppqldDn2TNpEMVWznD6Mpi2LYr8VTQoJRkNxDEk6E2UjImoIr\niRPEfR/lvWWBw1Pr60+jNJycACnTGK0wrLs0Ds6NlWnn9N/h2aDl1l2MmhNQ\n1oxnp8cB2YkW3Pl9F+pyDVnz7p8l8MmptdPJCckkgkc1c0hMZ7LLjT4auIhg\nbV5T1tmaERso3qn+8fiJ0jcNaEYnk5pSOzn0T/n9LVefvtOTXMwI9Cvn3p8W\nn9PmeWRud1w5fTsytcdCr05KPv5grks4SI1fpI5CLo6SQbIk8htIdbJbiFtf\nkPWvmxkMV73ZB1Oawz8/SX568GjMs2ha4IqWaln0HzOtJncQwaP0ufi3X46i\nyLTuc5uhZ8NTUv8AFal2av8AQwJ9eJeIewP0KODORESShCZOTs2RZI4hbX4z\n2TeRi6GhK7rHL9/Ksrc8efQnTqJh19+QWkbhwu6acL0Bg/o+Kjm73k+kkz9Z\niNXPR5387kJyBfR1R0Ra+aOeEuAtgRuDqoRJLU/SSWbGSOQyFsnifaNzBxcI\nhklKbrx5Zux2nM5ktzCSh6ctmxbblh0sXAJrThvTcRh9Tzj68cb1E2nRxLx0\nPM+txV1W7PM3cUHnj08EhvKkLPUtGUOw7oSrL9c6lMZPBs2Hrfi/atTBzcKh\nkFUsvL+hgrxpvytYdpzlufXOR2GUjRy6LrrN1+v/ACenzbf1TqSQ8rVuBo3K\nqVoTo1CmHbMfGvz3Ozz9J0cnUY1c5Gc1RMncsmQ0ShgbL4v2h5kylNChB13C\n9g5NtySlFJqsGJ14x9Exgz68+UX0KuPruBOMTlps0L2kdyfrrmXCSIGYODyy\nOw87PMZ70OD9Jo2VrVixMR6k/SFSMZBJNn8f7csDKBbg6YNqaH6F8GrJ9ibh\nnbYMr5pRWha92fKr9QmHsx3f4CmDQRDKJRMTHcHvGj18Jfr8/IWbuG8YnLdf\nI+ikbc5bjzk1WKRLJ7J3ITJrnlvakIM1VnkD0qLKcHc8pVLfJIK7kJRmlFTg\nVIPQVeegEdPRhA6j0loOniP9HNXBKOeFJo5c55kjMiNyLHBz1ufUFaqEeVUy\nrLJXZPZOZX6TTub6U7l6CFaTANsAWAqmuRtisBfqP8Qn6VcmqlwEodCtz0y0\n9Q55JB0NlaNFPjP9HBTkrN9HNtqytAaUBZ89bhrGrCrcD0WVclyFH0pHJxJF\nK/SPr6Vj5m1nh6BSnSLt8qnEhDR/EBQRk0GLAr9RQQVmjSh6FTfVENE4WcDn\n489o3g1zVgq+vn6Fn3WxWn2CkNWfa+dU9vPVwR5D5LTIFIPIPIlkPj/wnaMW\n9vzuiQDikufBRUFu9J7IwKMACgBLBoKj0KQOgGPe8MbHE2QMfIYqm7FVdWBZ\nqyajj6lqTo6hRGnNNfPpW7k14h5kbSMpOJBpI5E0n//EADEQAAEEAgEEAQME\nAQQCAwAAAAIAAQMEBRIRBhMhIhQQFTIHIzFBJBYXIDMmQzU2Qv/aAAgBAQAB\nBQJwRsmFAK1X905X5hN+NnV5nR/kak/4/wB14XkUFWRlUhJmmgJ2lrE7x0Hd\nwg7anlYViA7kuPjZhD+Nk7p3Rvwv7BkPj6cIwQ0JZkOFNHjhjAaEakwhuoaB\nVHhibU20i/24oTx5bomCp1P/ALR4lYf9PcXlMlkf0/grdada/p/iel8J0/Qj\ny2b6r/S6nh8F0b+nOO6iwGEwwPlSweip4fxPiW1fF8yQYVtb2L0GjiRyvUlb\n9PqdRSCeOKPEOcVKcpqU+VqwL/U1Hn7/AETGOzHMgkTSsmkWyOjHVU19NLM4\n/uSvDK4r5Tgffdwxsr2WsvLBQjJgr5Ki8vVQmxLGS/C60sYrvdSfrHku7d6L\nb/yyxAFmDoPHFicD0o3PUM0bcxiwxzTKFmKU/wBsLs/I9J1+51qdthyXUhxV\nsjj5N8N92OaqZvC0VnZGT1iDuDJSz1isoMqE0UOTYyjsbDJaOY/BH3WBcuZu\nYrbh+Xcvl/GO5eGzTyh6YCnK1urgbXy48mRBcgmGxB1fI+VzHSNN4+pLFsKx\ncMy6TF/9QTflH5jOtsoodJJI9gsUeW6Vo9nMTSSN19+p0BdvFz8dHR1f2Ju6\nARHwG3dheaR0LsJR2TrFXtMZ1rXpJNy0HpH5c3mRSMK34YZHX5u5uY5X/wCv\ndI2N+mOgpe/gMjMw5XC//DzRNI2CrMGW667g46tZC3X6QrB95/UYzqR1fj26\nvTGOsUsNasfG6x6gpTWcRHXBouineSpN1JXg6g6/rtPgaeIzB9O1QF1oxi4C\nEo/tPAOpCDqXlx5emUF1+CbVudRZ90Abk0e7uCMyd4Q7KiB1/rnK24qecyeP\npUOqclhYCyclmap1Vk4q+vis5BK9q1kWhmsY+Br0+OmvZG1ljxVu3ihPKZH5\nbzHcs07t6GK3esYWjgc3nAiDH35L92e5cg+8XqdcKrOFms7BLC3arxvLLZDs\noOK8Gz6WITZQyFCdaN5pJQTAzJg1BlOW7xR8Fq0amsk71YdUBurNVhQF+7WH\nwZsKhstvVuNrYvtrZu+33FheHMR8PkWJorOx05eW6npy3zwuNio1ZDZWZvBs\nxGAsSdmIwqaFDBIJPIEpNCc6+2vVIzklh0cGrBqHLpx0XmZyfaTRgW3ASiRq\nGHZ3NhKM24ktg4lXYTjn0GzcXzCZ4sxICPLEbHZc0ZPztwgsuLUrOz0LHrPN\nsf3TtB8pzW279sF2PU4JY3I+8U5SAqtOS3Nj75vfv1WwljJc0LexDMR+3DM/\n/t34BvRFyxHDpH+ZfwMcTu/kCO25KGw8oSl6yn7M30/utW7iPF7L7U6OhoNZ\ntJKRo5OXq0XlQVnNfG8PG4uI8LtMasVNFUxjSmVQ41lb2QpS4e/HlquYDa1Z\nJjKIHFSOziZ6Ac3aAJuBi9Dsm+wRtGGju9CqOmSieMK3G1AeIZ/AC28kFHkZ\naC+I7FTDVBwiFuLHGog29f1EB3ee+NYLHWQ1lF1Vcsqt1E5qGwFh+eH1Y1pq\nu57fbTGwcLU5OohMDd/SWT2mkfnbhC25g7IpNBExZBDuqtaSyVCiFOPqmsP2\nakfvQi5jsV3cYqmhwcCx8Eu0zlHEhZ2R88HzxEHsH4x22hbqBjssBNTWPnnt\nqpg4CVaJogcPEPqnf1yvciq0JAMSaKV83U+RROFxCWTlN7IyGMQ8Nsgb2pVt\n3rYhzVfGjWCSNwbquXXB4+LY63oPDGxxedFo7JnUJLllui9nhrKSJwV8Slg6\nJhe0djpGO6YdPT1pq0TVot0L8iALzxNGM0VPp+pTZ2ZgZt4s1jdGNm5ctGYd\n08nn+4YnM8PiQAf24R+5AD37khwdYXfkTYSjtDJ+y8NzlBJsm4UiN/MMq38G\nfChl5OszOM0PLWazsulYQjCacY2pnHKEugFyyj/H+EH4nCiNEybwrEfdExeJ\nGey38A/KI1hovfHzcox3Czi5Z7RXbcVWJjv3WKOtDes8qA/eGXVBZRybNIyj\nXLs0huhNxehc5QExjLV3HFDHXp2zqxhjbTfJbKi597loDTyILDKacWEZmIhb\nlSB5JTm5vsh8r/1wj3TxtZ46tD0Lf9s8aVxX7JXrNb/BRXDNObuo39wf1ad2\nKGVGeyp1d0eOd19pd3mx/bEZuxLTvNxHaZZ6aUDl79y5jYAxcGTtVppsTPyE\nFhozK15ezo5zuYQycKGR9P5UcLykfLnJ6lspD/xcbWcpQh1jM+y8F9tcby9c\nem4qcuSj4P6R/kBev9geqab2w7sTRws7FVZZIGALZfux2iBR5V2U2S3GjDGc\n8nUjA9bCz5FSVnoSv34bYHy3OyM2aKtNs8EqrAUxY/HjUCtFu9+PtTM657h4\naDwxeCi3f4s7xdO9XSync91lQTpkIpvpytvOHvaKncYhksNpm77MEkmx7Lfx\nu6hhKdU44MOJ5NhirbkJ1+6Iho5MzKzYbs0zWOry3LGOx0ePi656y+CMMba5\napvV/qjD3LFWL128hG80UVk4pfs9MJ5fKyNfcZoXBxb6brdN9ANwfH5g4VP1\nA3btXDsn9CJB5fG1vFnCtehxWG7M3yY3nltaIZdxu2/jwHtKWMqS27OHxcWK\nr9a9XNg6zmUxtI8ajsxTBPW0LFx9s6Xsx1nVaZgV2eP5DWeV3VKG7Xaakj0f\nh07OyYuEJfX+/o7J2RqiG81CHgYyaNdVZJ4pwvyEdq6agtFrkrfetU5Xsn07\nhBxFfPZmvgcdkclPlb/lWsJuZ4b4y52MC1WLvNv3GMDsEBncdyjuIbail2a1\n+EobHBS5axR8TxODgfkfLcLhBE5lD0rk5QsYDIVmlhMEQ+cf6y0z9JJm4vnF\nOEONpmcfTdDaxjsY9K5Tnx8/6dYH9lvQeuOoXzuVANnri8x9SgLWctZ9a9Wd\n3kiBnhZ43+4vHVKXwZoT9o5PEEysTeoe5wO3E3BDciZcayY3pK1ZhzGBnwpL\npvp+WOdpgBPaXeF0xxqzRq2myt6pRP7lJI1uwYyU5fYJvHd5LKys+OwWXnwE\nfUvXVWbpuKJzc43mMOGHHZKPJYvqTD3MRN8k+G9np1+6pqriOrohdcaqM0Ev\nmWVR8qI3TuakgM10/wBNhTfkObJRXa/UPT9WnVwQWDrHIIIrDOjl8HK5LM5t\nxTLueQMTGGEAc30YZvL42S/FkphEXbuSQi0QzNrYZtWtwyY2z26nWVDMYv7X\nk4YeXxlDtiWP3abCsrGLcFYicFyoi5WiDhmgbdBWInqYtqrMSZtlpuN7ExZG\nj0nellewAxqS+DKa2/OUzcpAw8fR1CfsL+o2HXa7ij9KGQmIWZT05a0RP37X\nCmjaQKkn2rI9cVI7slDE6KGvqowRwM6sU2dZTGtxPG8R1G2RhwO3tjQ2UEbg\n5yMUablxmCc2t96Aa+QkpW3yViyOwV1cybr253dbP9BNxOAuRmLRgLvQYSV5\nD6h1rnjyhC5nM3LkpaVfsxzz6IX5bLVe9HXsvk67CwLdBIu6jkVwWMcxW4Kn\n4Rfgfh8LG+rtwwjog2dzsxwKzm4ohyfUIBBZDmKDKnUb5kkycfr/AEj8PRlb\niz/MBIIpDXx7BMeKNxOEjtTTNGxk5KM1M3cFjejdkuezWV8zVNeR3WZfLY1k\n+DGB+Cj9gOt3DoQ9sW8IZHA7MmleS7HErmSZSE8xVoHkrHh1a/xpe4gpnIJc\nsmL23U3DtRm4aQ2db6pp5FDNIymsn8NqluBrlRoxkZwVaRM3I5ev61YPkKSH\nRfyhB3VzYWa88RWb24gXmvN4oD3rMUeq15Wi6iyfx45rbkXedQzPvULldttc\nnhhvtLFNRODKyduzVCMJY+2mJH+IehAfKYFqwLfZQkzq0Ds89n4wR143UKh/\nGaLdgcsXkMrZZlTLuvDU9clDqFr+dvMH8j6jgaDBQ1TD7TSNEGYuHPO5fSL8\nqnhAfg5FZcZgsUnhKhdfH2WlCwjmGafZcoJXFDOnPZCXjfhfNkkCY3ktA+ox\n/wAwGmWQoDciyvdhkwxcKI24yXBDNV5d6fjtdtAfdKNmaL/9f11Vc7MFr2TA\n7oK7uq1b2CDgedUZcqYlLKp2CRPyKY/JLlN9BJ1utvIKFtppn1CN1G6F+EL+\nM1iWyEFcnqShbZTS7LTZNVV6voPT9Z5rkReo/wA/i2ds/KyPx+WaszJolBwz\nwQsbS450dM2UtN+LMPCMHZAz7HS2YxKJf0hXPC3TGgf1gbl5vJRkoXQ+Vymf\nls/h2txxT6HX4kZqy0YRzczAGDofEpxqNZCbt1h/ck+ousfdZnhkA2MAdXWH\niyzERxcr4zLTVPGEzXIQhlQGtuV/fCgf2jfSX+SA+FFKoz2blCXnwbdSYfh8\nbY1UJs43J2jAOclkoR4iBC3r1BZ/x/4blb/ViVe/JCvu78WLrzIvrwv4a4Tk\nf6dYSvmLHWHS8WDtieq38qI+HtNq4TeQdASjl8hItvAGjFpgyOOehPDc9chY\nOZYjEvTiBvUP5mLtQ5qbYiJc+OUP/J3Wy3TOpvEMz+36ZA0WN65s9zPHJvKu\nUBppe5EozXcQGoT8Ma2TFwpqo3YpqZ1rmOw3bf8AFAh8K9N65Et7RfUfoELm\nnqEzfHJSx6KY9V3X52dNLw7w7Yk/56Dn7eP6luNNkh/K0DBHzy/K7jppUBpj\n8tJ4imUM230I1DNwrOk2U3bUkC/q0e53YUadbISUf5Y6qxMVJlJVZZJhBQ0e\n8jw7qaocSN/NW+z4qbwXTeVahUyMmxxN+5e47X0/hbqGz57yCVBMobPCCfZE\nXK5cXH2ym68uoh9Zi0Az2OY9lYHyS5QEoyWLs+h3G4nv+l+z3pcbxp2xJrlQ\nXa7RQA8U1sPbESQfEnk701Ztprf/AFMKNvpwt3A4LYyoSQmmNVrK7yGTlMHu\nzqJcNxkp9WCH/FsNoUrco1/YCgVUiBHM6uWi4Y3OXG88R7KQNmnp8jkq/bO2\nCA9IlTb96Gr8pwwdn5A4qeaaXE2YoUbu7gbgVa40jNImNAaim8BMoj5X5DA6\nMtIrJvNYMGjivLR3aSuTKGkczw4I3VbCsCt0WjGabhrU6hL93Gl6MfDbqX8c\n0/g27kZ+pf3T/wC3ulET5WyEjZOwKLJ2ZK6//8QAJREAAgIBBAMAAwEBAQAA\nAAAAAAECEQMEEBIhEyAxIjAyQRQF/9oACAEDAQE/AaL2iIZjkI+Ehj9UMiRI\ntItMVUdWJochsQxfpo8ZHEeIUBwIQoRl6RLM7OQ5eqGJkZHMWQ8g8gshLIeQ\njM8tkO/1cjkzkyzkWRZP+R/d66F9GLdC2WzLGMxj+kfm/E4lF7I5bckckWci\nyLJv8T/d4r8R/RQJQrdC2vZ7sxj/AKI/N7LLK2RZRZe/Ms/w/wB3h0hvsw/k\nZo8UIZIx7NiX4j+iGf4YrL/IguvdmMossvfiWR7RHHbPCPCL4LHbMf4El5BY\nUPCh4RYqHjFgshj6P+e2SwiwkNIqIaRJk9KosrivdmMSGvazlZiESK2ixyL2\nskzkWIRxshHeQhjicShYyWI5FiQ17WRRF0RYxoYmSkJiLJMTExCIRK3lEUBx\nHtix2OIoJmWHEv2oaEiiMbJOhSE7JEmLayMbPEeI8W0BIW1FllE4kYkejkI1\nI9nvyLGhIkjDEzRoiY2ZCiEDxHjIxL3ZFkGTnRLUEM1lllkitlA+Gp+7McvV\nKxRIwIxNR/JD+tuNihQnXvMiJqzPFTXQ48DF+QhetlmRDdDkP1xo4iEzUfyQ\n/o478fd7U6MFyZPFyIx4CF62WVZPH6sjGyEN4GsnyZhh0SEIW6GNje/Lo0/0\nmV+iiJNX6swRsiOBLo8tDfKRHpEpCkIW6kOQ2N7pGmiWSX6K2q/WCtmGNLfI\nujN9I9HMciJGQ5CkSkcjkcjkWWWYs3EyZJTmRf4DycSM+XuvyJZVj9dMrYlS\n3asyYrJxrZkZCkOQpDkcjlsyyyyzE19P+iuiMfIceHvkn40Zs7kzxE1W1WYI\n0PeGWyS5GSA+iyzkciUjkITLJM5HIvZKzGqFMXZNbXsuzLmWMnl5EVZGNmbG\nMxKyMaGIo4UWS7MsSiiiiSEtrLJMooTEYo2SVESMiWQ+iYjLPxoy5HkZwL4j\nVDkZMRp8dFHHayQhoyQOJGI0Pr1pHRSKGzGiAyU6PNR5bIzOfZy6M07K3asl\nAkyDoxysk9rJTFMUiR4yOI8ZljXrHG2LTNngZ4GPEY40RGSieKxYRxol0yWW\nkMfWyMWTj9M2TkiEaGyEiUzmOZyORFlkdmZIig5ENI2ZMDxiVmnw0UcTiRxx\nJ4YmXKiOQ5kZbUaljluyJmxcHaHKzmXZEn6xZZDZDjZDTpCqJLGsg9PxZDay\nx3Ezahoc2yL2gcjkajJbF2hbMiKHKJkx+JlWJbUOI4j2j2JENvpCJW1jI73R\nqM9l2WWcjkRkOfRfZRCJJEduXF0Z8fNWQiSQhIcRxJQJRMXZW0OyMD4NjkXs\n5URnZdGbNRKTYiyxCQ+hHjKoiTYh758PF2NckJC3ZNGHajGtpDGLoeVIz/n8\nI5vCT1TZObltfpBjFtQ4jK3sa8kRrjL0e0kQICRBbSHIchzJyIysng5mSPEU\nkcRrdkWOQpHI5FjiND3wPkaqNEeizkSdjkORCRCREQxmSVGTIciMiJRlhZLE\nRmfSvay95CW+N8CS8iJdCY5EXZkEQRBGIezM2QuyiKIFH0nElj4nKhj9bLOR\nzHIi/SJmiXW0DgeMS4mOfZjRI+GbLQ3yI4HIx6OTFo2hwraiaMkRqiQv2sRk\njZkxnAhDajMqRp42yq2kZlbMWlswaFUY9HFGXCkZ4UMcyK5EtLZl0zRKBx2f\n7suOy6I9iGzP+TMEaW7l1RptK8jswabiKFFE4mow2jLhdjgzBiZDTmbR2ZdG\n0SxuI40TIroX39uXHRDabIflIqlvihzkYsSxREWJjHDkZNKmf8KIaVIWKiUD\nJhTRn0yM0aJEF0Pp/tkNFklZixVsxmhx92V0WWRGWyyyyc1EnqEh6pGTIpGr\nR/pH4P7+1jRxI4z4WOQ5H/npcSMuyyyIx5EPKhZUZdUkajVsnq3Y9UyOpZny\nWP6R+D++9/qY99LOhStbciMxyM+ShZjzGXOSlyJQHGhuhzsfZF9D++6yEZ/p\nchy308+zFK0SJSITORqUM5mbIYxkoksY47QfR/vupmPKRltf6aMfTMEyyQnR\n5DUZLJsmyXbIbNDRkjQ3+lkZGPKKYmL9FD6MExMkSzpEtUSyWSZkYuyGzQ0Z\nSS/T/8QAJREAAgICAQQDAQEBAQAAAAAAAAECEQMSEAQgITETIjBBMhQj/9oA\nCAECAQE/AULliJEhIQhd8mSJJs1fHkdiiIRXFFc12KQpG5uOYpjGRVkcRqa9\n9DRoOBqKB8YsZoajQzYvlofKQudDQokiC8n85fs/nc+GULlDYn4HLyWWXR8l\nEZnvmu6iSIryfzl+x+ic6ITvufC7JMr6kvfZR6IzIkvx18n8LLJLyfwzGJll\nkPJk+p7NSXs/gxDasmk0V9Sb+wmJ9sWX+MvZKfg+Q+QlLyb+DIRdG58gs+g5\n/IQmSzUSy+T5fAspLKZM9MfVOiPVWi9mJifbFljF+E/IxF8ZFYoiJFEVwxiJ\neCTGLs2NuHMixCGLvYvJLhMRVmookolEVzLjJM3sbEzY3FOxKx+BzGyOQiR7\nWiPNHo9mpRHi+ZSFI3NyXkoyiRVmnFcQZJjPjix40YfRDtaFzZlnRilfDQhj\nZubkhcrySRkIqyPTMnhocKHxFjYzZlsw+iH4SNjNI6SVsfrhjH3okhrwYPo/\nJayGRaE5FiEMaNRIg6IS75TN74yo6KHkyeBEjc2L7olFeTqPovBjz6mTJuSK\n7KKKG6Mc+5yolIUiySs6aGqMkvJEYx9tFcpGZiEMbEL9MsqNhsgj47EqRLyy\nMRxGPtormjqPYkIcRxEL82zO/Ihn9MX+S7NBIaHEUSUCEDQ0NDUorjLj2IpR\niZZ3IgmzKnEriyxkSTox4nk7ckqMjsQz+ny0jHIchIaHEUTQ17aKNTUyLwQw\nbPyTyLF6HlWTmihiMeP5GYsSxolIhIRJmd2LhSMuLxaIKjGLz+OpqUVy2ZGP\nGx+OX5EhqjFj3IY/jP8ARKRjkImybvlRLskqIzMUr/Gyyy+GTkXZIkuKFEk6\nMcfkZixqA3sL6lCQpGRjY/IvApEGTfGKQpDmKQu3zzbKJMkIjGz4j4j4iMPB\n8fkxY6GIYshGZEmjLChFGhCJOJIgzYlMhkITL7JZEh9SkLqUxZYs+Qk7GIiz\nc3NyHoryJnsQzqFZhgNiZlgfEaGhqakkJEucTo21JdWkY+pWQbo6jNZdmxuf\nK0RzyZixmgsZJUS46aAsZqVzlxIhChoSJyIvm+JISJ87UTz2O5EJvGRz7onx\nRR7OnwKQo1xZMlEUTp4UhyoZfPSZVlX2Pb8jVDkPjY2Is9kuG7GiTJMvmMqM\nq8FFCVmDBRFV2uBp5F6JIYuYycZ2iM1mh4JslzRRZDyT4ijI6GxiiKBqSVMc\nLRLGamLBYo130KY5DF2dFn1Ooj/S7EPsgZBCkZ3fNln+iOMgSxbEcRFV32X3\nwjaIrVmL/wB8ZkjpMQ+yJIkORN3zRqY4CjRL6kMxjdj76K78ciSs6DNp9DrM\nOn3GqLNSMTUjElEnEy8IRBWQxigSRPjFmoWVMYnX6pUKRGWk7FP/AKcdGSJH\nHYoEo0R4kyZlEIRhgeuJslxrRCTIuzX9UJk25HT9S8XgySTEJkmJikTdk/CM\nk7Ez2YcVkY6jY8hLIN2IQmQ/ezdIvYjnbIuyycizYg9mdR4R7KIR8nTxVGWd\nEs58huRjZoaGpCZvyhftiy1xN84XqjPkt8RMcaI5aRPLZ75xyE74kORGRHIX\nYhEvZL1+fvjFKyceKJrWJ7fERMlIYufRHIfKSyjkRkbUQmIQ/Y/XfXYhkZEZ\njQnRly2IgvyssqyMRQFExoXo/pJ+O+uxDKLNicyj0RX40ampCFnxmhqQXE/Z\nfjvaHGzUrufFCGMQhooogjU1FDhMjIsQvxzYKHE1K5QhjEJDEMREaGhoiyxC\nJCZsRkIX4y8mTDZKFFDQ0IRqaFcMiamvbZFmMY0Nc4xfiiRkgNDQ1ynxXMSy\n+3UjExjHIcucYvx//8QASBAAAQMBBQUEBgUJBQkAAAAAAQACEQMEEBIhMRMi\nMkFRIEJhcQUjMFKBkRQzobHBYmNykqKywtHSBiRTdIIVNENkc5Ph8PH/2gAI\nAQEABj8C9ke1F27cL9FpdKHtJAWb2pkcR1zWHM1D8lFNw81vub8LnnoE0vtd\nszHVn9KsXo2nVrGhaMJxOjFznl4L/e7d+uz+lelbJVtFra6yVcLcLmZt/VVi\n9EUqlZ1krsxl7iMXenl+Sn2unXtb65eGU21Htwz+r0VjsdYubTrVQwlmqtNt\nsVa1VK1HfLarmkYeejVRt1or2plV5cCKbm4cjHur0pZmy5lnq4AXa8Th+C0W\nl2i0usvo+o57KdUEudTiQACefkvV2y1/Nn9K9IUg9z9jmxz49yeSa/6fad4T\npT/pVCo44nOY1xK9ZXY34r6w/qr68DzU06jX+Ru1Wt01CHO+wKGQiUN3eRMy\n5ATnqSnPj5o4+FF7GY6cHMlNJ0DV6HrgbrGVcXyy/eRjlkq7+5aKtSkfvH3f\narFb4+poVWfElsfxKxWBp3aTNq/zOn3L0V/mGKpRqDEx7S1w8ELG/ioV6rP2\nyv7Q/wCZ/jf2itpypWMn5uhUrLzdSdU+RaPxVY1Him2tZhm48xi/mFZX9aDX\nfsqzMdaCGtY0YZjJB4h09QsTzu6aIBnC7V63CRAnJNZVl48UHszUXay26Iko\nkZYtUQFDR5lNGvQIZy5YQcFINP8AqVrcNW2Z5/ZVntHvsDh8QrW//mqrfk6P\nwVsqMzqU7Q57fMOkKnVbm17Q4K12r337vkMh9gXot/59n3qg15jbVNm3zgn8\nFkv7QnraP439u21fzFJo/WeqAwP2X0EjHG7OL/wvR1dscbqZnxE/wqz1PdsU\n/spsta8gKCchyQbMdQsOipsA9Z4L1rNe6SsVKfLwQe34jpdDESo0bzWFh3eb\nl4KV+KiUQ/MAZNVs/wAq/wDdVgLjwUsB/wBOX4IVOb6r3farYPz7/wB5WH/o\nM/dQVgP59n7ysj6P1tO1NqM8wHFUq9Myyo0OC9LlzQcTpz/TerCbMTSJLp2R\nw4tFSrUmMNOo3E0gKjR9IRVtQLsTnHHzyzTQ50WbaNaWd3NnTzIVenYQG2k4\ncBBw94Tn5JocxpdGchWqq55qYquGTno0fiSqPok06m3qtxB+WHn/ACWI/wDD\nrMd9uH8VRot9IWZlmfZuE2eXBpb1xJrzybMBNYNSc1rqjlI8UDBfuyUCcOeg\nK3s/JNfOv23azUPJBo5XeAOS8F4IMpj4qJ31UPvKpZX2pmzczAfVtRsdG0NF\nlzywgnPXNCy2auG0RvQWAp9Wq7FUqHEVTpMtMU2NDRuN0+V1N1M4XscHA+Sp\n/SbQ6o1jsQbhaM4jp4oU6NrqMpt0bDTH7KqVLNXLKj+MwDizJ6eKp/Sq20DJ\njdAWGy2jDT12VQYmr6T9MdtMODC1owAfoqo61O2zqmsgdIWzp2vEzQbZmJzf\nj/NWi0C3VnOccUOwmXfqptm9HvGzxFxljcpTfSVotI+nNOTmtGWUJ1Gtay+m\nYkYG9fJMs7bU7BTGDgZp8kGAk4d2Vk0ZmAQmwJesMhZaxCYSxzncmrIljebW\nrCG7SnGqLHckap+CwDVOA0aPtWHqs91oWATHRR05ovesshyUznzWs5rFPY1W\nq1Wq1Wqmb7HSa/DQ3nP+xRTELVFNJEynimInVRimM0CQeqcAdc8+UIvccLmZ\nhpTXvLbN0NR6bUe/Gw98HJbMfYmg9/RSnPjwCw9NVC9Xr9yy+JUgZrfd/pXi\noByQlBjliZp0vy7WtwTZ0aFgAyXAt5Qz5oxxeCEw7xCdnonPY/EXZYU17x6p\nh06p9O00pbpDghVoAusVUeso8kbPRnARiZ+isyR5ptMalNk6aBfkt1Kd7x0W\nBv1jtfBZHFGpUnNxRzWHrzXND3Vj1a1Nd7KLo6qTdrnfonQ3LqiSeSBHJPJo\nsrUpyrN6J1CpnlkrLTHEKOac4T0CL38TvsU/JYBxO18E0DjRyzKbzcVhB3ve\nWcLTMrHGONVrs2p4yzbyQRu09iVx4WqKG+sQsuS9dSDCpAu63MjWU59J2Oi9\n53FSaxmzrRhgeK2jPdA+CHmnT8bsvmo5qemQUA765ypHzWBjd494rq5Vqg1b\nH3px8E32jiSsidmshveKAxbNp1WLaOf+kU0dh9WmYczNMr4257271W3jeiC5\nEhb0tEqAVmp7ynvHW7l4rE/h5BZCJWFvzRVYHV7mj7VCHtHsZxFWqz2pshgx\nCU/B6uc9FDxu+CjJxWai8036FRg2mcy9RCLSqpA5KO9dJ0UNuDE0uMu+5dFE\npz6eAYM1Qs7OEDGfMrGRrdrdp7K1VzxOIYtQ0Jw2m0bPVZDS7xQXipnsELe1\nUrReHJQDiKLzyuzVQMtewyLmuIyyTn2ip6t27+kvy3lNps0A9nF7m4msfjJz\nTprtLueStFOyxgAxADRR3h1U9nW7K6SbgnPOgub+Ve//AAdfinPdyya3opjf\nN2Z9ruzs3d5qazaOeCcguKahzJRLhgd74WBxDx1RCha3i4NaJcUQs0CcymM9\n7eKZGrtE1vIBaws1tDwlVKlQ7V2IwOiPsBdoiitVmolVq1R2EUhiWzs9nBnQ\nu3ihUtxhvKk1U9jwdETnhJQuJURdABe7kApOdQ6uUu1XgbmgraHXlccs+qqE\nPGJugRslpZhwaIlH2EStVqnZo9jJBkNfaX5l8cIWFh3jzUPG/qs4ukp1wp0h\nLvuUcVQ8T+qd6PsLv7yR6yo3uD+albUd03NCAHK7JGk8AHwW3wF1Q6ybj7GH\nFaok9qWRtxp4+CcbZLMB+rKyWqadSiSVHgE2hQGKofsWEb9Q8dTqhRoQbZV4\nfyB7yc95LnEyXHmoTqZPF1RjNqnmbpUJpjebz7E+2CFwI0ewJuaaMeabvQVS\nozus1UU2Y6lV+60c1HFXfnUeqlqr6DIN949FWtdc4qlQ/LwuOHdRqEg4UbgF\nknZ5KStbzdp2wACXHQBYhZsI/KeES+yVI8M1vMc3zC0KCF2CoA9q7/zWI1a3\nlknUaVLY1jpX1ciKn/c5Ff7RrDedu0geQ63OFM/3WhuU/Hq5ZBbmTRrU/ktr\nSYWtIz81sxxLfYA3rK4liYVs+8efTtzeVCFSrUp2ae67NybtC2ox+j23Mtdd\nwpNjJneUAlahbwatG/Jesosf8FsbGS+oNZO6FyWYKm7VbIxjfUaWz4TK220L\nmu4qbuF38lisNX+8Wj1eHvM95RCNOcNFuoHeQDOFqdZS0Oq4MIag+008DX8L\ngZC19rpJPJfSbSMdbk33VzyRs9ai2qw8im2yyltFzNaUzi8k2o90NdyWYlcM\nXRmjQs7/ANN4Wl0HNdL2Vacer681H0fFA16IwyFCa6d2p99wtVLu6hNpWouA\nGYjJWiyY8eydGLqoWfNaKYuz7OSgCStrU4/uU3Q35p1N5wFuYqdFaLNU4qRh\nS4qAh0TqFI4eTnrXsxEhbvNOaAQogAOUKi+o3A2uMbPEaJlMcNPed53QdFs3\nuig8yFY61GjsnOBl0aqSOyVHZmEA3NSVkFDDg8k6SU4sO9VElNl2S33Z+8ix\nmvVSe20MMOCrst9eoQQNniO61U7PSgt+sLh1VF1o+pBxOyX0iowU6bG7OjT8\nJWfE7MqLiO83RU9od+jume3PYD+ulwhaFQXrQlVG4Tjcm1BkU4EYwQsOcLXs\nz2MioMOHipGXgg0jdZvfFeKN5PcOqiZ7RvDBzK8sr3v0TnPMlF8jEeSLiUA5\ncWSwFmDo7rcwxGPREHlktEboN+pXEnwd5YnvGHzTXsJfi18CoILXeN0oPHLV\nH3hqoUKVPZ8lF0819HHTPtAipgqAZLZWhkflKjQ9UMO6KztWhGniFSoc2ubn\nl1TYOIOWt2q1vyWA95UzyKy4naLaTira+s4byDmhPCU6Lz2W1Hjfqb17qjuF\nie8nXsC/BUAc1TS3m+6VtaTW4tC1+hVW0VH06L28FMcgnuaMLSdLte0GGCh4\ndmO8NCsD1nc4XaKUxnUwqYZwgXss4PFmezl2ehWebbytOxKlHtZfWDQp1OoM\nLhqFr2CjUPCxAXSdE5Z9gLK7PsSzI9FDxF+fY6XAdmFtaf1zftWF/Jdb45ps\njedmb3eKdUPM9kB157MPEhHATHbIj2H0mkP0woNxKA7jcz2Hj4dvXLtynFWo\n2ultqTREJostQvp1Bi2buJt2q1QK2g5+wMrEz6s/YolYGSSVvDfdmbyU1k+P\ntnXVqh7z05n+EwN/FO87s0QsJXl7BzSnUIl3LxW0fxqL8Cf00HayC0WnatFX\nmIuw/FW6uDk6oYubl2B7FpPdYo7J7QN2iKmFK0WatVA6x+KhZ8xksHxTfNDs\nxO92Nbsrnu5YGi8lFT7EqOwclHI3V2v+uHAnP5Jt/O/FO91Wu92Ivnms74Cx\n+97EgLO7O7RTc/3nbtwTxtmUoBdv4vwC2bg1vrNmd8GM4/FGlRDXkBpzcG6j\nxVSq6luM1diH/vMXZlSDms+JT24KJUeKawd2/RZBZrRSB7ByBXld8EcJ1GFO\nIqZl+0nCNZlSH5yHThHLT7kaBqTSMbuEcv8A5d//xAAmEAEAAgICAgICAgMB\nAAAAAAABABEhMUFRYXGBkaGxwdEQ4fDx/9oACAEBAAE/IXpajjUuLiVcAZ/E\nzkSgI4dy0iruB1cw3C3mJTbOfEHF1B+X+OvaimiXUXEOPuKNQpeEA8IJRifL\n5jaYQQcPX+OK0l5BjBuJSFWKiNuu3UBfAurgIcG3KLtGGHQmfwDK5f6hgZfl\nCBxklYmVSzxC4UCge5GgqMyWKIDVtcxgMOgVMvgW97HWNQ3NmghaiU+nJGpg\n0pObAui4SPMNQALxYn4YGHREQ5UDgzviFsfPoooU6O4oKSssALrGhoISKga3\nBnRMRFYsE6ERbnAxComUGuZrTXay1XNPZEZUBypriFKgfYLnGQMatQbh602z\nJjgCnY6YmNV6pKoA+aGGWVNIdxlzLM54/wCLi6emCNjCb5zBJBc70RpVqA0R\nIWp/2IllDVqlYUFdCzfqW5Uk11mIHQFeipcOvVc0P2ROy7W9xl2ui7tT7pFg\n4Kv/AAq/OZcEAdtD4E/Mrb/q4SFdeUUn0yznInkKH5KfmDf7RocSxVNhNKjB\nolWqas/Zf4VwWpe+6A/b6lLtipaB/EDteW+DDWAsFANHiDD0dBNIXwqn/sbF\nM9N3ZrMCBeh/SahrCs13GaqmS9SsnJKhuHlysEAAFK5qYWC0de4X6ew4IwDX\nFkNKlXyXEsxcJ+4UBW0cVysAmzLVq/X7iYgE+HKuDavAMS2sAekEET8p/wDk\nCIjaLsSyZYop6x9gPzFBx+pLOGy9AfkTigttohncrF0IJ5j/AIGml+1LnP7I\nf0S1Ngaom1erw+5QGw8OA/klkOQ+n+szgSBrakD7S0ni+BiGZbt46JgWGNl5\nheDDWuCW1wDVM4zcJDRu04bTCBbl2oNMxmJD8vmOhpfHLCuHNaviVloHJuKA\nXXFvPxF1M27ihqyjTFSqKF5mZmK9GNszH/i8oOxt1m4tmrfXbZ/cQez9if8A\nF6RkTNELIWfrRWxShyMPxLuHPwln7hrTuK5N074Ab1uMJYI5Esm+Ayzns8S7\nSwzjr6fuMeL+R8Jg1gwRuAhc1HqAFXCyZ6hZMCUpwqc3dPjqB9VwbpsqSzgB\nuhOymrqEgrC5RNxVGCu/PEMim2WBUljFfthWgvgGs0bmAiCsGoF0W0NVx4qX\ncU5Bp58w1RxxBwtuZvpAu055jgDS01zDS+g4j2K0cLzDDAI5YKAM22E2h5Ka\niFMtC+vMzyNjLEpzXUagg4hdche1+4rgENrcuUlmRXoLVtwRVYTXwKPwgKZW\nireYrUFgaUJvGyBNiILJlQdLmXTK14q0Kmi4PCcnODOGVqElFBwrq9B0TPUr\ntd2hYnwh4lyzuyDI4Q5sMqvmXauXAJSlAcBC1ENBPFhftLtUeWQMWqMaMR3N\npIslVUlA4NCCpqnC8cxvVJBugmuwS8IEhgBQfCCmWInBmJi6oMDgJB5rzLSA\nd248eoawyFDSZGdyIRR8QRt5Aludb8zJrMw1LSC2LbxxNeA0XnzBqw6AxtGh\ndbioACqv9wpu0KBz8RgPBiMvoduJ4iPIrNXuUo5qBGtUjI6jwW10uiocUZ0X\nEQaDUBOtQJzC02/xCx8IK2MjFIIuVQUYAo8wjzGWUVeXT+ZTSTWcp2zMoRBD\nniDfKzXcqBu55H/cMFMIKrMsmNmWOyCQoZGBgLQFjDQxAGNcgzDLOc/k8w5k\nc5Tk5tg4UBytx3KlJpXxAqwq0+YTKLS/aVQ1na8BucKcgOncoZWmf6YiqW0J\n+4goFdKlLnDiuJrKaO570tahJCuxMMsD7Y/wzaDM2pQDo8ytWyyzGWbuCe6h\nQHXuMFsqB3DU7wTzKZNTOcsKi09stbYHEc7U/jGuQpu8blbQbx16g6Qovj4m\nYYPkJXUBSKV16IbHMuLdSknJG6O66Zkms9ZUWTkNcAySwlAf1CqFYByxbSJR\nfY/+wDAXBQjK5L11gdQUrmHCyhXjEatBDFjzM977Yyap0MQ7AC1TIdyyNs6G\nj1AM2u0xc2BqWqmO0scXfEFwGJKCwndH0Zj71XHAzFYZpLh5grusYm4wHEcC\nIzRvPBcAA8utTBZuiZ9TTSsY57iYVGQeUdcV4jXJGyL3uQgCBt0Om4BiRs5x\nAsAcHSGr8fTmBjHODh17nAlnuo7MsDfPRFmHMKwRzUvD08EPVDwEa7LJ8S8S\nGwxb1Gb515DxAAKFKH8Ri3QXNccxa87jEwhbWYB2cwhkJeGCBtiZVEVY7gBq\nMg3UraAMtwA5uc7gFl2tX+oqHQLmKJrFx1tQELVXSSgaAE0SoWSBT7je0i/l\nYAK8Oe2/gnEoI+ENzOma5YKGJV5fRLzIWVjj1DKWtKXFDdZUxDPPo89xVMoy\nvBAbGzdkRUWBVzEdsqMOiapXjLg9EGKZNeEEqC1axGfdrKHUsFOeowDEDGFU\nFRWIKoUrnI4ioHUKEWcwXeXTLhN0vjDrDqydSktznB8SoOTWOIV6GpZUtt6G\nOgIEriMckXtu6QgG+B16iA80XXMrBB/OW7NXutvcJksXnO4TrbxUJco1uiZG\nMVgm8PkuYoxxwr/UBBjRbMv9E5OVluWXsKvMtVRP8v4lQM4thAamYuApqW4I\n2WVtMKssSNxGYiiCl1mEYMSwqjEXWSWw3VTb3gux6g2hfYw+bgcWMURa0MsV\n+VRBFwyhbcMC8LGYV0Fcf6lfADgJWDDimBQDrtKj6BbN5uoRAVjHmXCxD3DQ\nVLzUsaZv+YXE+JToyxf0ipa83uLoCHMxnZpdqEFSgzOga+BljUtvwR4rxBdU\nf4nahoQQJXjKCZ7TLVgZ2H4bUcRGwqC788oF/bLUkFNsqMJAljrECT9yDJkz\nCFBunERK57lULmAsCcwLC89QS8/zHmLvqCqWpQvUzVBZiKxj+IkV2x9EU2A1\ny/3KSpZSpGSGqU+Zi5q/EJBYiNMbTgtHziZSq0qnxIMaXmcEKgKXtg3OYxtG\nB6hWCwUzmONxusyqjrzLDmYqfidwltUSfxIVLW2Xbh1BoAGCSuQmZESkVIzG\nK0+Y6Df1NeCfU6mFMCtFv6g58M5ioEu9xxa7vuNDGf5i5sXplKNVFRhcqujR\nLGNr1FSLmBWFVFU3Y0co/wDJpCSPAPBLDg91olrTUZuxmNFyZWruAgrCVdyu\nY3AaCL16itZqIdvxEDP5jzP5jQG9XdQYDAjVe4du0FcsrQWmp+9PzHaiDwTi\nXdqtZ4g4Ev3GswmVfJ1OGhmOC5dW/uIx1A5iygb6nmaxAcivEMAiuyuoRDBU\nEAYASm0ypIAgpLDsvMsSqV4yfuW6uYv1GOrJEpFuKRmMhv8Aw0aslO2MMQPV\nDSsYeW+Zjm0oWnfsWkO2MFuH6ZqIGbjU121r1GYtKHjUKBFwxxLIjfiN1Oum\nWIoCUi27jYLxUEvP/DqHwDejweIi4luKl6NQxw+oOoJoGGU8is9E4mJYK9FG\nrSXVhZeMlF/cAR5yTOpcUhGrllRoS+Yt9QQGEL0phjwmapruDhl7l4eYIfmX\nPbuF1y1FV8wSZifSC5aA7HCQLYy1UCkpDEECqriK4cauEpTURRqk3FKuXXA7\nWUk1MxT/AEJx27kXB5fiVtBHnuXB5ooOGfJrUW5S98yrFlKOIIAzKFHHmDD2\nAvf1LhZUlpfUVUqvETAj/C1zMuYaqUqiUcXUa5lS4Cj2Q24ncJUsp3GZxeri\ncrF454lGNy5FrbGo1UwQBm4B2ihkq5b8ymFXTBC4CUJ/UozdhWEIClBLB8Ah\n25m4Kc6Ha9Qmuyhl/wAHRELAauexH6I48yVqXKw2xZefExWxVYypOpq/EG4J\nRufczRK6FpqCeHFx1Yjj2/8AIedxC8QGYWQf4y/Q1NrZG3LgOLl2RzqK8oN4\nWBqjMdlbF9fuZRxAvalS9Rq0AENpicsLmNWRy6hntVr9wsjQX5iRFJsLQQ/h\nQ7L0eCOyuJ4W0JkRihocDwEFIXgNR3Uy6meqNE1Byy5ZYRDHPiZnJBNxgcDr\nuItkriwIAZ3CPogUMz0UaRluUQtW5zi5i7plqwbYCwAvxcEGHIP0ZYiHTkBo\nJ8Sva5IHghFmKt8UuvUGqEeCXYqtof2qI+pN6Cd3x4g8LaoC/kiBxBHzkFdX\no8e5zEMbZYldC9tfI4PBHW/BldRBvtXPQ59yjnrjRaMbiyhzPCtrSVa1Duob\nsK8Mth576SzaPmtxCwzGpv5lVWwbZ4my7hoTDEY4RYnLeu4EQBVv0Gp3Hp6v\npOGJ9v5mzFHn26ITwkxtN8xDa3yXOj+h/UJhrzgnyRi+KVnhO2FM3vxUsoPP\nEuC7lGKxjN2WxYGRXyfcMjJlXT128kdiuq2u0nrB7lC8MzSSTbXllEg6pYWV\nDlQ79y2kN0Vx7ltHCXyYdsRNGuajyjWsRsrUyCZm4YBMTMssuOljKcdq4ZQs\nQJllN3TWf7zeMuzOLGFz74lW1LUMg2WmL2JY8qRTfPOZQht0EqsFfMaNCx5K\n3D/wR44HONy9lalaDvZMQa/gjhkTsgKtqGEkKlADuvOIIKAbUYRzcUKwECjC\nmXm5SHBa4GoaP6ljeV953LL1vdhqt8ygKaXRsiVLt1Kqiu1wYqqKSzouIYVA\njEdEb5YaUrUIBS3EBZeBxF2WuCOFujuNHJjM6b8HI0PZEFvnOcwHmuo/iJiT\nkwDocPfohMtIeY5upcdYi0z4itoC1a4gmKQVb1DeDQfGrjFpMhDQpfcecmK5\nByTjMty7v8Catb5YvK1iKaMQYJQXNgVxUw7D6hbBUJC4LB3B9RCBHKlo7gZy\nFPCFRSGHtxFix7lKoWGiFbk4OJiwarnAehLXrGp+VPy6mOLRa/MwCxZgQm1Z\nnrzFyV3lzBB5eocGV4llKtdwCKTdriZhzGJ8zdTI0Wthd65cfUKYPauWAvwG\nvM4u25KGarm4zq9uyxL828Rj3f5Ybol/qDUzG2C3LOEKv2mrgYYEr3BSIdam\nLHMyncF5kDc4ItI0sPHccwyPUo2W9QCuyC0jsrMWtng7hVqELblV0qVIQ+oB\ndMQGxq+I296puCjS2MMPIPcEUWtygG8YqILY1Eb4rUdafDKnzCAqHhZY+OKK\nzGc3fzGBmUPPCU5u3BGE57e4aWM6fE8RE33p+IYxtuMly63iMvMFyxClwtMv\nzi4T4IxDNEqgMCkdfL3BVm4IOYUNzzxTeVmaUGOkbiq6YaWUpHqZr0cBmOho\nrJ/OVSqsO5V8eWLSFWK5uoxagJBJams3DbqnxEKouZ2h8SoarxL2JD7TVKuD\neYyQW7C5gIYbGYGvSBzHxbDqREDp6P8AuGKdY7JVdEgu6bNqCiuqjW1phV3d\n+ZVc5ZSLgE3QP3BCILFy1iNAp0CVi1VkPMStvzuKLp98RmVV6gVg2lx0FVYs\nZcA3Ww+SXMDh7ed1zuL1IKWNlHHzB1hsxTZLnCL41Ut0bau5wMPUWojWI626\n9bgIcd5ig6kufkdQ8LRm+5jFxwSJ2iMlDkigiFUjgdx7JblzECsrG3qepExY\nS1uIbygbepbvXN4NEAFcEu9ItwBeeWXsFr8Rl1AbuCzWpYxjEcWKeiGKtD21\n6h+gCPgdiRhNS2h4O5nREXx9RRgaeGJB9OKiDlv3FTy7Y6yjEybvTUo8NPZL\ns08pmVpqweI4JvmOrEYze5VpeYw8inUxd4l2+LE3sjCPEyyXKk/aoLVHF2Ql\neQUD4hbSA24m2JYd1GpamfCUNwywSuRB7cQCyi6mRB1HRd2yZgQuahOAVwEQ\n4Br+YVEj9xpV0e3mcYvDLAnOrhTllro3NXZqCh4dTGBXEOjMeg4lMtdYgoi9\noZv45ZQVLxKhWXuMFW8VUQqqXlVLIy1yij2yjxZlg+5Ymjli51hiupwpNSSq\nqlX7hN2RAsLpTAt6S/Nbccr1F8nM3CHXMFMueiCqq3x1UV1a33KkyXzBDzXi\nXbbjrRHRqX7zcYZjmXalKZliLggxM4hyNBobE4dRcwKpOSUVNWFeCGd3HB2w\nE/3OiHGJzWV66dnxO3WY1VExHEpdz70IJRJctEPojmiBxgTYQsplY+rMFCW0\n8Qb0rCG/xMN2dSqoNy5ReK3L6Xs1U88O4AatMPHkngmMphXUQEWhvzGZtmR5\n8y5ZcFKEtxxOWFgx8w4IMDQUxT2sLKuJf/C8wcyrUQCyJyD8xZNRWZYgXBKj\ndYW3IJ2AcwQYISlLyJzHZZC2I1vmKm9n4gW+XbxLqtObIrGQcsMQs6Sq9Q+q\njV1UqBZLcYnISg9woAjhHNxGGeyjbqVhZSpLCAbWC82V/RBAGjENDMsDrETT\nFUfqUf5ouVAuZltVGGREpL9R3QzUvWOZjSSz9/3KKb++S37h0gDpC1OHzO4V\n1iEgdSr4ZlaHHKNzqHW5g8/4DBRkmlxs2ChYmSXQdThMN6WeIAsNcygY1KV7\nZQLbli2GCyy4aqcITfDCVuHZlLO5nHMto/4N0ypSwo/MFbahi0oSkJUiLsMH\n4IOWljTuFKRLO63xCrd5iWDInEJMeMksTNHU4jjph0blLv7hAqot0m+oiRnv\nUxkH97AK3FTZht8yqS0Qlq8tEIaQ0pGjXMKOZ5JmLZTDidP8Q98I5VMEbNtD\nlCXQqKUCe5mSQq+oF6H3L5moZc0xQtYtpaW7BmJUd1VRrl56jQl7ijcUSxTZ\nAbMOy4LKsuvKeJ5JfIMEAxiDMSoXkGLNNENoSjkVRLE8kdDxKjmbBBVsXcay\nZoIbdQlrhFG5sGLzLwYcQqKIyo/EI/BMxYKbgF7zziCuyh6VzH5A49Qw83Ml\njJCU5XfmYSqfE1VnPMSwFCyhijZp5gDSsGtxhu/zLQTmFyCcYhWO2Y6YeoLA\nSGZxMpeKjWRlRVrXMps2Yl5RIG8GZUloRJd5grCEHkwSNMsRqCXai5ooBAbx\n5JcBqkeuZpU61LUBwLBYNhKsBXZ1KG8hyxQmhtBF1qLoVcTIZFuaxKeVaTFN\nUlOTkLMxMbluSjqA3dJQlXXuZxTORxKYj8Yl5aqDjAs4jtfdCYziCA3ekzMA\nqZKTXFxlylcWAjh3CrbvbEdRJfGo6pGQwqFTVcwC5iLsFgZ2OJen0gLbFPUN\nW4MpYqFVg0lMNJcVpwJurMg0YxqYzBBlWAyrin/LKRcCtAADGMDW6zHf4n//\n2gAMAwEAAgADAAAAENTxOXQ93RgQj1ypH6cc9za8tIuhYpqydaNGkfn7uVlo\n9LshKhvzPbZDmc+f2rvwF5pIUQ1hZpr9kx8ltWBIBhAvvrY2PnkNudka5suI\nTN1YbUH/AD7bO8Yg1dlaoYQz8L38rpSjbaGjU7V5zzTPu9ri/lT7C/8AX9Vf\nJj3kAtXt5sn/AFdLZv7Q7dYRzhqbwmFVbLsPDZJprdnN+su2JWis/wBu6mjz\nOye5L94eb/C1ARaizfXiO206yP2BWQnTzTh2bMLiE9+sk6XMVL8VaRdzHP7c\niGiqmKofT9yfbD+m42z42196YyGSbTG/7F78PvYW0hgxVjUMox763O/wlSxb\nGGF7U9rDy2u99vdGMyQ8zzW6W+HS3Dbi84Rnv+7K6mm53iEZzn+t8etu4R35\nnZE3yrSVltiqTKJzWSaTqcSGihhbecQViXOSSLr+s0b1vECDBL+8bJ4ffLIV\nZY/E9vL+w7zL7mAWf6aqLR4SBpiF1g7P6V977y/58n9TfH3CGLNbv7p8ePf2\nQG1r3ThBfpJb/wC3PI+sUs0tMXGxYf8AyfxLa72PLcnUhdJJvoNSf5LZNo7k\nTlIXoLqbJKKvTXxMno/WtQlIDaH7RnjTc8Zt6+EkE/Ie3jvBOTabaNe9N4ve\ng7BtbQFDDTTfor9V792tZ/AaPBLDSbR9gb/ON2P4O2ra9LITSZXsSxlBBnn5\ntGrLbTSbfqznsEpZdg/R49bTTTbf/8QAHxEBAQEBAQEBAQEBAQEAAAAAAQAR\nIRAxIEFRMGFx/9oACAEDAQE/EHE5lWSEGLdrshjGMJJPznGY+A0xxANQIQiW\nzEJWWejDETqddiZBHHariXYgYl54JyT83WwnMl8XXxfOSps20sljbLPRhiLA\nsEQQYgTdZ9S796vKtto9+PDCfkuxFvn4hTz+RzOIvi7vsQQ4lS/Psn790gy7\nfgfHhYi6X1+QQ/mOp3H2+I3GvQYY3yNW92tdndvt8puxB2Dtv+Xw7Yj2T+Tu\npM2fZRrEG2zYskn5MIxGPQYYxGJQMIgicR0dwjsJtUTFTgguLGkB8tP5InxF\noSOWST8mGe1lkkkQCdMIf2UNuYMghLu2POajx+LpYwea8LbScW1lyVuOMb8C\nsskkmZ08WlhhhYy+KhzS7+LBbJZZa+GNxLrB2wHIBtzDJm22TZ9U4m8DVsFz\n4hYUh+R1f/NosxlbwywLDEI7PPBuENbqfYcnxtsKPdf4Wh2wR1tPsrthZF92\nUguTkc9HDJs8NRDZLWyXzlh2DEtmchljLskW+BC6WRDq+0OwvE+SCCyyZu54\n2M7ZJSvs8Qh+fmbsTK0uoYLbbZnEc8ni2OqMQ5HY1BB5kzdTyT1c5j8UQ/LG\nuMe/oysQky0kfbnF9jCHZyll/MG2+DnROGI9WWezDk/5fd/REYEm0ZyTtZ8/\nrOUsv50NttC/pYeLYRHqyx2IGR7Ee9BHg2R/1PNrHbh5DDAsTWlLywCApIgg\n8vbfzmfRfSPUYhLJGts8rsMkPJJZ4gpIW4puEH2R1Z5Ey7H87bfyKO3/AJq1\nJdhq4r5tkbRjZNny7xSkPAalYx+eRVn+IfoifkIIW4+uUIzN7f3QC/yljc8R\nLq+o0XfYzyOLrFKQ9BtzFRfyH+y/llliWkM6XV8DwHPX2RHGRd8Bq4jkVeNC\n2lbJLKLJJJ4ZOEi2ba+L48hDHHxQbl3fe22bEOX+8C+4ASzn0NLqSwZZy38h\ngJJJGI2bbY/kn8Qz7IS3jyn+bdJhLZQYbIgcXG0axln5vlfSfXottlcI3fIZ\nZI9bAZZ/yz/kj+X0XyHk3eCBGPLlltn4NMH24tw5J2VlbLPJ9OvM5sBzzT2I\nAcnvph3bfBmZIXfJeSTyC2DnpvDOqEaWMF3JJBJWEzLhvsDOPZzM1bHG+lu2\nOmM4M676FJnGqUqNeeEJcmwJdEYSFrBBDlgx1cl8YQJbmeY2N9IcNl5JSWem\n98j/ABJZJ2YeXSM4Y7yXJciw8JJdXa4Y6R14DyXb5jH7kMuexljASlr5GG/v\npNliwlkxhjETNtFh4kPCuW6LpcoZz5d4s+zrycYw9RzVk8WMMPjD8+Oi0Ygu\nZJ5YMtXJf1JYJ4s7e6XK6bk9AF0l/wC213KsXJh2/izh2cP4230MuXVrJJbY\ndm6trKeIpBbpcrpuCbkZ+kp3U/k4kOI77iGsgfhtvoU9LlkkuS9lvJXbU7lt\nj1t8WF1biDUzusEx8iOktbm0gYFJlM+bbb6RZZCcIgG+vABg2pk9mF9vibEt\nxyb0X8CBwLr5cMvzxKJSwip422230iZiI6SvSYcNhLDL+HM2UbkWg0iGRdZk\nwhLkxzL+ghSD5iFyZzPQ1hzr3LIIcmYi3LR5H3PGCwl9ozzNjkZcmEa8+4hj\nIfLtuX8WSa3y1sXIC3bb0+vLJJYIPSIaXfkZm+ZnrbhkYztGiRCKdhbttogO\nst9mmb4HFyOQZT3+ws9IhtrMJ63J159J2m0Z4IpQfGO+DGHGT9Qf7K+th8BT\n3+wsIyyb+TIYEJbexoIuFuQSCLLusX7HP2L/AHx69niqzZdPL0/27Iw7B+Rh\n9VZZQdsyWEoyWknBkjKCTbv7ACNLfbCTPB9/bFgI2XfTNtszPZia5Hbsn2eD\nIDdWxJweWenmsn/iklJlmS08M22zMdjV35Ny5y/sBZcn8zktQ+WXDwelo/8A\nH//EAB0RAQEBAQEBAQEBAQAAAAAAAAEAESEQMSBBUTD/2gAIAQIBAT8QEJn2\nce+G5SiPWbQteABGwwqTYpLPyyPHz8qqfVPY2zI01juIR6zPFvGrO+7WYW2S\n5sCWeokQfhhcEuyeNW/PIxw+qrOF99PkIM8HUOWQZ4y8Pf6EFd7QX2+XExsH\np58K+3V+YB8mCEffw+TDEHu22XZTaz+c9uZJLPwkm3F4UFiypFZsDJEDqXMY\nOeOKBAfyGffUggmS9DbfxtST85ySWTKChTYlR7KuQ8lTRe5SaMwUVsZfAEzZ\n7PQ2315rn6RM2hDUcnAbb+CylKd+aQjOWLRnMuXIjF1aQvIGUNnP0iZnkIch\nzxW+GD0UkEkkchxnCP0RTJCY8sOyE9htllllh4WW7lJni4fKz5fypyuLq6WL\nk77ONwuF22D7CfD7sssg8uJZY5lVvl55czws306h+AC6v5r7mX48CyfBPSLO\nfcEEEIHphPb5ulz2WQZy2EssR73I2qI94g5bo53Hs/GkIfDZHkEEkvuXgWlh\nqWclK15YsR+LqC5saR5gtsQCH1nxskyI9ewQmwjUk7XmWyjHsEEEEQgSWd/K\n+r4ndLUIi230j3+eQTOMD9gfEXOD7oYwQQQRCZZZC5jP8g53y7QhEW2+hBM2\nZa+vVMA68+++XKbwZ+SHncQ9nUlW3Zk3C+uTHyIcins/i8AIOTNktXuOFjKE\ny2B+aoDBLLIyM9Ekh+3QEbMKyIdkJintf4eIGNPABdV9xyxcuRN2T7ljCF/L\nLLLJJPyaSQhI8I3WECCX8eW2WAfK+PxYDdl8jtr2M8b7JBsURZZZZJJ+TSFh\ndJiTbBE/rfx32oGHk8gN1ufnn4HVn6DxiCOMgbq233Z1sSwjPbLl9edEhms7\npb5Y5GMv9tY6W9j2+o1GvQOTkMJZdtDxvoMx4X9SC/2OdxbKczU2WH+VhBDG\n/gJt2xLe2I0xDwfDi3zf2ztm7ZOzOXIjGxHCUtt2v9mXIk+s8WPgcLMnbpcs\nZ9UQ+fO35ExkJMXxHx/YI/1mGWnZmbpNV2HPTR4FiKQGLqG+fWCdEp96tdgc\n/nyZ8lssQhzkdvqON0iGz3yKhtFsl4lYpAefjLaeVnH4tmPLyIH3ccvuWWIQ\nzLEre+r1lttFZywMsxsmduRd5ALN/LjI8tvdmXTYnjZmJ1yc4YfXZcMAWzkR\nFKrwTvZfxvpLJsttv7M/fJuWdG0Cc4YffVw2BbIiHCu/SAT+7+DCo22/rmyz\n9gLp/b4n9sGz1LZC2zlyul8R9h2NsuHywsb6jkC7ER3yEe5Z+cs9A4mIl/LL\nkCgv4LLcLnLt8X1GN1gBbh6y66QvO6iPcs/OWShJDlmqB0lj4DdfHTzyFO8O\npjviMjyB8mi1ZWYzLltu2b7ln53Iclk9FyWyXEm+d+Q51UeYSZ+TjLZb5OPH\nFkxNtlsPcs/JHrx2+Ft0sG7Jbm2mSQ22bBl5Xr3FjEZZhPE5/jOcoOI/RH4Y\nl8bbWRq+FKvskbCSD+KfZKQ52SSEp2eznsP7GI5DD75MeWkQ7fDdO3SPkzJJ\n7lnoqISbKTb4bndp+7HkMPuYhEcSnC0/YJ/aZmST3PwP6oNm5sGOFxNIP2we\nQRGIi2yb6g2NxyOxjdeTFb4/Eb8XnmA9kvonYP2B5YM4mEShp4+o98zkdjHx\npB6fzPYGSsZRbemQfsZyZaTQx6AyWTqYU5LYTGESSTjyPYc9AYZdlz/kxEFk\n+hltpHZxPLex5MYRJJPiPY89AYZdlz/j/8QAKRABAAIBAgYBAgcAAAAAAAAA\nAQARITFgECBAQVBRYXGBMKGxwdHh8f/aAAgBAQABPxDokkzEao9/+5J1defa\nAuN38/5DVhf1/iGGF6hUa4sYSxMJOlXLmv6ZcR+D1OxN4CbVulBfv3WZS/8A\nDvTse/O/QjOqcHSkA3ct4iKoASBHODpnhRruYn/RAKuWSKHJUL/sIFXPzglQ\nTK0m+UnZbYm2oLdkLvEDhPtLZ+RGgbr1O5xfqBJ6eoMvBwNTHxMIYfPcqLGr\n6TP5U/RcC3BK9EN+j7wluSW5jQc3pyjI3fxRe0XU1n1H7ewqSQ+OjHfyAKi3\nsuD390y+O/C+uR17E93RnhtaU/7qroMjgTC6+VLLqY0aQkAYh05AzTWKFGIT\nNojUA7oURn6prlSTqDWd1o3bAMqFgXvW1/eq72Nky5vZFm44RqTaCkPox3S3\n5fN379+yX8sN2e7sdsZ8np8tby0czbybgBFSFZ0//wCDZDcs55CCQBYoE4Kw\nA9kE1Qwx3hArtK8jGcXSZtpvtABNzmdHO6XfHNNS8B30L/6bx1V/GshoSydH\n4u1vrZcEHHVz+oOvVm8Pc02k69jZ3/rcWqXCvwLjMERJ5PexfoN5lH6SXQbw\nrYzBldcuBfhUQoGGhbV+2FWHF+GPmOuqqnVtetVMsoPzRKs/aDQdY5JikgkV\nNgtORTvGtxQEZLZrHe5vLcFNCFe14GR6W9nYQFfSNiY4faswUtU6F3bRb3JB\nq5N+v+65ixppfccU0QX3YbKxfhDOqfbLFPtl1m5AQf4EH5+hPfjVEqLjEbZc\nTg4aS/snGVl2dmBxW/M2Mwt5KACWSk+5NZ2vmfEpaJma9cTlsrMmB7L/AH2N\nBnB5H7Jt0lb79zd6Sn5wqz49yS+CUBv9r7JdIqS/8s0XveWzX7e7c39mxrHH\nS1l7/f8ApYq3J47rKbTS4nvyety8e/8ApW9+JVS4fuy1hX15X1pwzX5hv+mX\nNDifzP5Ks2n1N7PCdsxW/fQNGlyJxt/ft+sy28EuXcvNtlrRzUvuO29lF6rt\nPZD6kU/fpQHNUTXBXxz3lDnSstVvFUadsyalbrnDwfKBinjp+qbHLLvfdj75\nR/6bo3dW/eoPYgvLc7+P6C2xX5ONnvara8Ay/O7D0Gc2g4bDKlQdn4j/APnh\n4rlnmF3/AI451nl/32gC8iV12dz1pDkzjU+jdsf38CvZfvaem769qD89o67P\ne5OGZBFmeRIfPmnxrzJ8UuaNM+zTbfzL2BjjMr/922suHB5VNhzqR27m/Vpj\n69vmHudQNB3XVLQ5LeqlrGl8T8NifX+PUffpNWuufW61guZU/wC/1AYmdhRW\njoVd7y/L+r8P566qhzfzP/V5SDjlodZ66/lHjcSV31Yqj4FRml1/KLC6EYh7\n21nfTu3v3faocOftI9vDUxa/Drx/vvEGuIXuj7Vn+ETpfgFnX4gN4erf/HvR\nyhRNrsztXliSnMFFNX2SnlT4d/xfeFDcXUx1T+agZZlvXin+2AJ/7WXTsWxV\nqGF7sxFbjF1oPuUbdMDoyFvXJnGpWx/Kp+cP1x5ZVuuIqSfJWraRu1v3/wBX\nde3u8gJI6i6B+vO3+eq3SvMghdE2o0VIIhL4drW6yL/EqT3zB/pcgsv27Mxh\nZiArS2XiDdi3dqoay9zmnz6VZVV7L9PDHsE+8KHtlllke271SnzvhbHUUoR6\nnBZJz8jDs5Nz5uTPD3cKBPwdohBux7ObtXFo6HL6yTry00p66e7tnsyGjFG3\nv2qgm9vmqnWt9SYzLXX8BXO2DzFA2gTsQG35GfTrxTKW357hbdbVfI379ni/\nPEASrUPV3c+D68a7MSdfe/4evql2Fy/JOr3Vt7rxv+3xlwtND5jJf97y7Bbm\nhRaEfb9rs4fQqHk4YLEih021x6JNtBWtudtL2GdTUvFj7IAuZBu5sC/ryW7/\nAH6aurfJ+EcvH/NXFwdk9v7iqcL58erPfOc/8p/XX6zXvso9HOMsdth+75b9\ns+ZSjEy8cgD3VAua77WP+37NHRydnZLhNvEvkrVdyy4/ayBkZkOO6fpL4aMO\nkvd/OsnbQfjdX+n/AJLvW7l+5Uzpv2GM876Z/wC3zkePuEp7+xbOSDG5Z52h\naIejM3KmtBz5S73rDxAE5WSZhPcz0tbq+9nlBPk29pvn7p9OG+DX2FGeM+co\n3y/Ndr14Kb9mO2MSl09lRmLXTpOGTwyBnY+389ssHOhR/P37vo548W3bOdbZ\npynfkvbz01nupZP1886u8dPtG+LJCt36aZ5UvbLT/UM1+f2iKJyJwfXgOzxd\nz877LL+ddx761U+Y+tnx4+f71v7bFeCDp0o1tH2Gf7GjPdRZ8btM+UP7VTnH\nHEBB1Lnu1sGyRB/EnaG0I3t23RlXeoA4rHEsfvsQ2012Pm7jqqf/AF9v7f3/\nAORxpp6m2j/y1AE/87tIn6xT8ZApSNfEaW3kESjVUs03e7r2vG1KK5nwZ/f6\nzl05fTx6YdwKbR86cV8wabndTIC1Xgr7tYvZVHydHo3h8ucluMraffx0d7WL\nNk/L7vk2gIHi6HRYb9j5OdXDIM0hZO7l/VtRkitEsu6t816/Yi7YXHLu8O3H\n+kw/I/F9ntdY+tLK7XFp9Od6+ZX97bj0fPLpTlY+NE8aG8tZSeEGCbnhRrjy\nBM7canRE/wDTdu7fPLjBvQgpEXfIYt0ENfoVQrfA+GlzcHDQwi8YT0r78e31\ntxcwjr4hXbm+2D+whyx89ERet4tRzP0vy1H/AGGU2TKCRrG2OmcyGfouynX2\nMTz3VL2ZEHcvaOhfDCIHWiPCgNOqW/GbR4mUqi5iPHnFb9cbc/ayG9Ca/nn2\nMxRmL7Qr8Vvm9vvvIY5V1cqm4pVuu+/vOxPX2R3eCYflPf7NX7awd6w3za/P\niV2+vy44LYqknnBFr4F/+T5YnMcMCRlkCNzAj5lNyTPUbZ/j7W16H33UJOt2\nbhx23wuQtlxps3ZUE7kYz2245YI7G0tuP/iGGe/W+yl8obqHtemyH2U6dMev\n95zKjv00F3PmByUjzO82LnWZ9PDullrbuejK3NwdinTuOwuvayIOKqExOtav\nDbGa6Lqf6YGGz8EdxTolPcTIVK/Sl4zk/Es70YEqTzURB8ThYcfCP9PiuQdz\n2DpW/ZZUxN5XOLzxWpvRV567kw3jsf1pvXU59pbosm3T/P8AtFatAkmU0F09\nn5XX4LlahX/fmeTLd/MZPP7sP//Z\n"], ["created_at", Thu, 10 Sep 2015 12:39:40 UTC +00:00], ["email", "doc@johnson.com"], ["encrypted_password", "$2a$10$q.4hqcLI2whiq9j5o1ACJOkCRvz3ZA844uJg1ppxDfbdyJbsPMYK6"], ["nickname", "DocJohnson"], ["updated_at", Thu, 10 Sep 2015 12:39:40 UTC +00:00]]
[1m[35m (1.8ms)[0m commit transaction
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
Binary data inserted for `string` type on column `last_sign_in_ip` Binary data inserted for `string` type on column `current_sign_in_ip`
[1m[35mSQL (1.1ms)[0m UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 54 [["last_sign_in_at", Thu, 10 Sep 2015 12:39:40 UTC +00:00], ["current_sign_in_at", Thu, 10 Sep 2015 12:39:40 UTC +00:00], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", Thu, 10 Sep 2015 12:39:40 UTC +00:00]] [1m[36m (0.7ms)[0m [1mcommit transaction[0m
Redirected to localhost:3000/ Completed 302 Found in 149ms (ActiveRecord: 5.6ms)
Started GET “/” for 127.0.0.1 at 2015-09-10 14:39:40 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.4ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (30.8ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.0ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (7.4ms) [1m[36mUser Load (0.8ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (9.9ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___536453388460758653_70134169285040 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (19.7ms) Rendered welcome/index.html.erb within layouts/application (74.5ms) [1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 54 ORDER BY "users"."id" ASC LIMIT 1[0m Rendered shared/_header.html.erb (4.1ms) Rendered shared/_splash.html.erb (0.2ms) Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 100ms (Views: 88.2ms | ActiveRecord: 6.1ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:40 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:40 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:40 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:40 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:40 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:40 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:40 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:40 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:40 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:40 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:40 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:40 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:40 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:41 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:41 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:39:41 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:39:41 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:39:41 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:39:41 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:39:41 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:39:41 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:39:41 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:39:41 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:39:41 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:39:41 +0200
Started GET “/users/54” for 127.0.0.1 at 2015-09-10 14:39:43 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"54"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "54"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 54]]
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 54]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 54 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (6.1ms)
Rendered shared/_header.html.erb (2.3ms)
Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 31ms (Views: 26.7ms | ActiveRecord: 0.7ms)
Started GET “/users/54” for 127.0.0.1 at 2015-09-10 14:39:59 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"54"}
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "54"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 54]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 54]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 54 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (3.1ms)
Rendered shared/_header.html.erb (0.9ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 17ms (Views: 12.9ms | ActiveRecord: 1.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:59 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:59 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:59 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:59 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:59 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:59 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:59 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:59 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:59 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:59 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:59 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:59 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:59 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:59 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:39:59 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:39:59 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:39:59 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:39:59 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:39:59 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:39:59 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:39:59 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:39:59 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:39:59 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:39:59 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:39:59 +0200
Started GET “/users/54” for 127.0.0.1 at 2015-09-10 14:40:13 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"54"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "54"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 54]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 54]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 54 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (4.9ms)
Rendered shared/_header.html.erb (2.2ms)
Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 26ms (Views: 23.1ms | ActiveRecord: 0.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:13 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:13 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:13 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:13 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:13 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:13 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:13 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:13 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:13 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:13 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:13 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:13 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:13 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:13 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:13 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:13 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:13 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:13 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:13 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:13 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:13 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:13 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:13 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:13 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:13 +0200
Started GET “/users/54” for 127.0.0.1 at 2015-09-10 14:40:26 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"54"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "54"]]
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 54]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 54]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 54 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (11.0ms)
Rendered shared/_header.html.erb (4.2ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 28ms (Views: 26.0ms | ActiveRecord: 0.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:26 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:27 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:27 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:27 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:27 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:27 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:27 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:27 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:27 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:27 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:27 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:27 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:27 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:27 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:27 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:27 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:27 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:27 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:27 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:27 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:27 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:27 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:27 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:27 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:27 +0200
Started GET “/users/54” for 127.0.0.1 at 2015-09-10 14:40:46 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"54"}
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "54"]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 54]]
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 54]]
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 54 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (6.3ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:46 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:46 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:46 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:46 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:46 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:46 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:46 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:46 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:46 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:46 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:46 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:46 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:46 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:46 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:46 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:46 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:46 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:46 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:46 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:46 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:46 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:46 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:46 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:46 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:46 +0200
Started GET “/users/54” for 127.0.0.1 at 2015-09-10 14:40:49 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"54"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "54"]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 54]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 54]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 54 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (8.6ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 26ms (Views: 23.7ms | ActiveRecord: 0.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:49 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:49 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:49 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:49 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:49 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:49 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:49 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:49 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:49 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:49 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:49 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:49 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:49 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:49 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:40:49 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:49 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:49 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:49 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:49 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:49 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:49 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:49 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:49 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:49 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:40:49 +0200
Started GET “/users/54” for 127.0.0.1 at 2015-09-10 14:41:07 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"54"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "54"]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 54]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 54]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 54 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (5.7ms)
Rendered shared/_header.html.erb (59.7ms)
Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 86ms (Views: 80.6ms | ActiveRecord: 0.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:07 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:07 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:07 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:07 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:07 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:07 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:07 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:07 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:07 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:07 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:07 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:07 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:07 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:07 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:07 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:41:07 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:41:07 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:41:07 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:41:07 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:41:07 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:41:07 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:41:07 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:41:07 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:41:07 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:41:07 +0200
Started GET “/users/54” for 127.0.0.1 at 2015-09-10 14:41:08 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"54"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "54"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 54]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 54]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 54 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (3.5ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:08 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:08 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:08 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:08 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:08 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:08 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:08 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:08 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:08 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:08 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:08 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:08 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:08 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:08 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:41:08 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:41:08 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:41:08 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:41:08 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:41:08 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:41:08 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:41:08 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:41:08 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:41:08 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:41:08 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:41:08 +0200
Started GET “/coins” for 127.0.0.1 at 2015-09-10 14:41:09 +0200 Processing by UsersController#your_coins as HTML
[1m[35mUser Load (1.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 54 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 54]] Rendered users/your_coins.html.erb within layouts/application (0.3ms) Rendered shared/_header.html.erb (1.4ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 21ms (Views: 12.6ms | ActiveRecord: 1.9ms)
Started GET “/users/54” for 127.0.0.1 at 2015-09-10 14:41:10 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"54"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "54"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 54]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 54]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 54 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (5.5ms)
Rendered shared/_header.html.erb (2.7ms)
Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 30ms (Views: 27.7ms | ActiveRecord: 0.6ms)
Started GET “/users” for 127.0.0.1 at 2015-09-10 14:41:11 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 54 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (9.3ms) Rendered shared/_header.html.erb (3.3ms) Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 35ms (Views: 32.6ms | ActiveRecord: 0.8ms)
Started GET “/users/54” for 127.0.0.1 at 2015-09-10 14:41:12 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"54"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "54"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 54]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 54]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 54 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (3.4ms)
Rendered shared/_header.html.erb (1.4ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 58ms (Views: 56.2ms | ActiveRecord: 0.6ms)
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Migrating to AddAvatarContentTypeToUser (20150910124355)
[1m[35m (0.1ms)[0m begin transaction
[1m[36m (0.5ms)[0m [1mALTER TABLE "users" ADD "avatar_content_type" varchar(255)[0m
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150910124355"]]
[1m[36m (1.5ms)[0m [1mcommit transaction[0m
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
Started GET “/users/54” for 127.0.0.1 at 2015-09-10 14:44:29 +0200
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by UsersController#show as HTML
Parameters: {"id"=>"54"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "54"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 54]]
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 54]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 54 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (12.9ms)
Rendered shared/_header.html.erb (1.3ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 51ms (Views: 22.5ms | ActiveRecord: 1.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:29 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:29 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:29 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:29 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:29 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:29 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:29 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:29 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:29 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:29 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:29 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:29 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:29 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:29 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:29 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:44:29 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:44:29 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:44:29 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:44:29 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:44:29 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:44:29 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:44:29 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:44:29 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:44:29 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:44:29 +0200
Started GET “/users” for 127.0.0.1 at 2015-09-10 14:44:38 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 54 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (17.5ms) Rendered shared/_header.html.erb (2.1ms) Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 155ms (Views: 117.1ms | ActiveRecord: 1.2ms)
Started GET “/users/54” for 127.0.0.1 at 2015-09-10 14:44:39 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"54"}
[1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "54"]]
[1m[35m (0.7ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 54]]
[1m[36mGameCode Exists (0.8ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 54]]
[1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 54 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (31.6ms)
Rendered shared/_header.html.erb (3.3ms)
Rendered shared/_footer.html.erb (0.7ms)
Completed 200 OK in 67ms (Views: 54.1ms | ActiveRecord: 4.5ms)
Started DELETE “/users/sign_out” for 127.0.0.1 at 2015-09-10 14:44:49 +0200 Processing by Devise::SessionsController#destroy as HTML
Parameters: {"authenticity_token"=>"sbeLFESZze/1oX3LOWqiQC3lZ1mechUSDe0XLPEEPqU="}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 54 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35m (0.1ms)[0m begin transaction
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
Redirected to localhost:3000/ Completed 302 Found in 89ms (ActiveRecord: 0.4ms)
Started GET “/” for 127.0.0.1 at 2015-09-10 14:44:50 +0200 Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (27.5ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.2ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (5.4ms) [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (4.5ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___536453388460758653_70134169285040 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (23.9ms) Rendered welcome/index.html.erb within layouts/application (65.8ms) Rendered shared/_header.html.erb (4.4ms) Rendered shared/_splash.html.erb (0.3ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 98ms (Views: 91.1ms | ActiveRecord: 3.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:50 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:50 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:50 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:50 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:50 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:50 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:50 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:50 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:50 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:50 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:50 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:50 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:50 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:50 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:44:50 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:44:50 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:44:50 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:44:50 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:44:50 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:44:50 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:44:50 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:44:50 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:44:50 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:44:50 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:44:50 +0200
Started GET “/users/sign_up” for 127.0.0.1 at 2015-09-10 14:44:52 +0200 Processing by Devise::RegistrationsController#new as HTML
Rendered devise/shared/_links.html.erb (0.6ms) Rendered devise/registrations/new.html.erb within layouts/application (7.4ms) Rendered shared/_header.html.erb (1.8ms) Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 39ms (Views: 35.0ms | ActiveRecord: 0.0ms)
Started POST “/users” for 127.0.0.1 at 2015-09-10 14:45:08 +0200 Processing by Devise::RegistrationsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"3DKf7iYp/LRpVmVbTJ0XKOpAB6IYvtFGRlJzrP2/Tz4=", "user"=>{"nickname"=>"babaman", "email"=>"baba@man.man", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "avatar"=>#<ActionDispatch::Http::UploadedFile:0x007f92c7a53d48 @tempfile=#<Tempfile:/var/folders/z8/gpslyc_s77vcxt36x74h30tc0000gn/T/RackMultipart20150910-13618-1v1lud9>, @original_filename="babababa.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"user[avatar]\"; filename=\"babababa.png\"\r\nContent-Type: image/png\r\n">, "community_terms"=>"1"}, "commit"=>"Sign up"}
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."email" = 'baba@man.man' LIMIT 1
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."nickname") = LOWER('babaman') LIMIT 1[0m
Binary data inserted for `string` type on column `avatar_content_type` Binary data inserted for `string` type on column `encrypted_password`
[1m[35mSQL (0.8ms)[0m INSERT INTO "users" ("avatar", "avatar_content_type", "created_at", "email", "encrypted_password", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["avatar", "/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJ\nChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/\n2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgo\nKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAHPAfQDASIAAhEBAxEB/8QA\nHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUF\nBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkK\nFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1\ndnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXG\nx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEB\nAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAEC\nAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRom\nJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOE\nhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU\n1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD6pPQ1zer/\nAPH/ACfQfyrpD0Nc3rH/AB/yfQfyrKrsVHcpDqaXNGOtHrXMaAR2pPU+9KOl\nFABnikHT9KWgDHNACAcfhR/hQvSjsaAD+VBO3FLjk0hPNABnOR70E/Lx1obo\naUc5BoAF980oAwO9A4PHWloAQqQBikA5PNOPQimtwTQAdj9aB3+tApBkj8aA\nAHgUvekHIo6UAKCcn6UnY8UdCeKUdPrQAUf40Cj0oAAMCkFL0pMntQAoPzCj\njJ9ab1b0oz2zjigLCk9acOpqPNKc56UyuUUelHUGgdKM8GkSKOho/wAKD04p\nKAA9KM8ZpR05o96AE/A0Z6Ggnnkijnv1oAUHINIe3vRnacCjPHHWgaQnY9aA\nKM4o3f8A16Y9Rc4JzQpzmjPc9KBwDSJDNGRg4pRgikz19KAAcUA9aUZ7dPSk\noAXrmk7Z7UuOTSGgAbvRnk9aCcde9LQADrSL1/ClxQO9ACHqc56dqUYyfpQe\npFJnk49KAHd6TsfrRSDqaAFHet3QP+PN/wDfNYQrd0D/AI9G/wB81pS+ImWx\npGiiiuozDtXO6v8A8f8AJ9B/KujPSuc1f/j/AJPoP5VlV2KjuUs0D7x+lBz2\no71zGggNKKQdaUd6ACjtRR2NACdqXtSdjSg9qACkNLkUHpgUAJ6UoHXApFFO\nY4Hoc5FALUX+ZoJ4/CkXkD2o4xkemKY0g28Zz1FBQnpQDwAafnAoGyLaeppp\n4461JI2RzzSFckZxkikiVqIq8daCDg45NKflA5zSZOCO5pjsIM+tBTd0p/bB\n9KVG5OaQMj2nB570uO/4U4kAnFMBJAJoEKck4zSBckc9aVm+YDPXmnhSgy3b\nqKlyUFdlpEaIW+bv060BWQbm4xxyOc1yPxJ8UXGhQ2drpkyR3t0+3cyZKoPv\nH/Cp/h1Z6jrNtqsus6nctcw3XlRFCAI1UduMHNcsMVzS5TZ0+WPMzpeowCvX\nGc0g789DWDNqdxpGrnT9ZVct/wAe9xjiYDp9D7Vt280Uy5jwR7GulTTFZbky\nAk4pApyfc05MF/agA8fWtNzNiDIFAPpSA5yCO9OZcYz+lBLQg68Gl6cmkU45\nH0o6nkcUhWsKW57GmseCKcFHamkc4oEL1Oe9ISAM0oPHIppFBURM+1G4c5pp\nGRzSoDyMUFseG79+1OX7pHtUWfmpc8jPegzZKp45pB0p3amjgZoELjjik/Sg\ndCc5oA4xQAvakpaRulACkUtJwKWgBKB1NJ3pR1oATvS9/wAKQ0DkmgBc9aQd\n6AKUd/rQADpW7oP/AB5t/vn+lYQ6Gt3QOLNv98/0rSl8RMtjSopc0V1GYHpX\nN6v/AMhCT6D+VdIelc3rH/IQk+g/lWVXYqO5TzR60gI3GlH3vwrmNBBQO9FA\noAXtQOlIOKB2oAP4aB2z6UvVaSgAXrSmkP3TSmgAbpx2pI+vPP1ox1+tH8QN\nMaHE5Bx1FAA3A8/hQvGacCOh60FCMPmPqaCcj6UAck0zkMQOaBctxzAnPHHF\nK38IIH50LwxOcc96jclnBPrSHBWYN9/jH509QDnHTFMJ68U6M/KaCpCnIIpq\nfdOaVqPXHSmZWGH9KVR8pApTk4GRinKF8w/Tip6gh8Me4gk4K8isvWdVgsgY\n8o820ZVuVQHoD7ntW6sWYjnHI6964LUY4Zp7zUImWQyAgxhcglTwR/KvNx1R\nx0R2UIcz1OE8e3EGo+JdHCkvm3Clm5IbzOc9jx+de3+CbdIItS8tcbrt/wAa\n8K1GMT/ECxhicbdkEjIOASZeMV794RP+gXJHQ3Mv/oVcuG/jr0KxOlNGb410\nqz1SzlS7jJYBUjlAy0RZgNy+4rzXTdZk0LXrnRbyYyeST5crLtEqf3vSvVPE\nZza3IXBcFMD1OQQP0rh9f8N/8JRZRqZY7e9tmBgmRc7eCcH16VcMTyzsyKcb\nxOosbpbiAMOhAq3xux+NeX+DdfnguJdP1NWhvLZisqN29CD3B616NaXCyKrL\ngg89a9inNTWhjKOpbXBz8opDhXxkHikXJJGRtpA3HTnGKslDQPyqQAUzoTjp\nmnDkGgTGA5NOHXHFApqqQwINIkc33cj0pO2T0pcgY+tIRljihAnYac0hHAII\nobJ4NKVBC0DbE55zj8Kd1IPah/vULQIlHT8KaOKUdKKAEpR2oGe9IOlAC0Hp\nSdjSnpQAnHvSik7Uo5oAKKPSkFAB3NLSHGTmkxy2fagBw70ZoHpSdj9aAA96\n3tC/49H/AN81g9q39C/482/3zWlL4iZbGkOlFA6UV1GYHoa5zV/+P+T6D+Vd\nH2rnNX/4/wCT6D+VZVdio7lMDrSdzQetNHLmuY0HCig8UoPFACUGikFACj7t\nB6Ui9KdjIoAaKdgYFJQelAB0pcfMOaYegp4HzCgBR8pIPWl6nNI3B/CkU9c8\n0wFUkZpikZbPWnH2pPVs8Z9KCkwODjHTPNNI5IHTtSyZzgU4fw469DQUnYaP\nujPelTjAPXFNAJIH40/+L8KBNiEE5HtxSkH5s+goALZWkY4LA5ycYoElcQ4x\n680+H72ewqLuTu5qa36EHk1Eth2saQ/1K4615zdsr3gheIqquxUR8lByT/Ov\nRcYgZm7DOa83dd5la0YP5n3XbjJI54rxsbdysdmF6nDzRKfilaDzFPz26RIA\nSNi8k5r3fwSd+imTg75pG/NjXh9ttb4mW0MSuoFxHjdjlVhGfxzXuHgVQvhm\n1KkkOC2T7k1OE/jfIWL0gkReIGAhfLFf3sfOM96y7KbehLK4YM/GMDgHrV/x\nIx8hgC4LSKAU6g4OP1rHtED28nyNuMfy73wTwetc00lIdFe4ZPjLw0+t6ba3\n1jst9dt1Bgc9JMf8s29c/wBKxPBXiQ3YW3kKLNGSki9MMDgj8Dmu3vdi24WM\nx7gU+Vm+9t7D15NeC6jfSWXxm1W1t8JA0oIVegJUE/qTXoYCUm7ETVkfQ0Eg\ncE8YpwJyDWXo0pa3TJrVAPfivWucr0ByT2pO5zTxyKaec0Cdxwo/u/Wm7sU7\n8RQIYTilb7pA4NNYjBzzRnd1oCwJyBnrSk4FC5zQehpgNI96B1o70g+9ikik\niYHIpPxpKVaYnEUfWiikBJpCFoNH40GgBpp1BoNAC0gopO9AB3P0pR3pO/4U\nvTI+lAC/Sk7GigHrQAijit7QDm0f/fNYI6Zre0D/AI82/wB8/wBK0pfETLY0\n6KKK6jMO1c3rB/0+T6D+VdJ2rm9X/wCQhJ9B/KsquxUNynx3pP4qN1A61zGg\np6/hQuelGc5oX1oAKTFKOMUCgBB0oycUo+7QBxQAZ7dqGpO+aDzQAjDgU5O1\nIeR+NKvBFAD8bskkYpMY/Gm54PelGBn2FMdmGDg9qDwpHYU4fdPFI5G7A4He\nkIbnPzGkLgcepp7jHApm1Wce3agdxenIPalBIHXrQBz170jA4/GgTHdC2DUZ\nUl6V+5pRgjj2pplIYBgsKmgAcgd6iOQxGAcVLa5yDj2rOT0KReuSVtJdmCwR\nsZOBXjdxqyNGnmmWN4WJwy4BPcbuh9q9a1kf8SS8+bafJbnOO1eT6hbq8EgS\ncq6qreXIMggfd49/WvHxeszqoaJszNCfz/iRay73ZRIxG9cEgQ9T/Svc/Ba7\nPCunD/piteEeGwf+Fg3M0edsUc647HanGPpXvnhhfL8N6epOSIF/lSwelST7\nInFfCjJ8ShmhjBj3oZwWO7G0DvWTOTHZ3DOkIUK4bOSB6dPwrS8TgvaxlYvN\nYSNhC2Aeo5/Os1PLOnvLKqQggDAbIX5h3+uK46nxG1H4CWaGRWtghgOxkISR\nT046GvnNz53xn1qRSdq3TAN6+v4Zr6RkZ5H2xSLkyDO7gYyOPrXzXo6rJ8V9\ncyWYLdsoJ4P3jXp5e1d2M6vmfROhk/ZkB9K1geKytFBEADdhWun3cEZOK9VO\n5yt6jeg60dOlOIyMg4phU5+tMLoQHJwKcelCqOo60N3xRcLjTnByOO9APIpV\nJAPpS47nigBQcHmmN900/OVyeMUhzSMxn8VC9adilAyKZSDNKKMAfxClA+n1\noG2Hb3o6KT3oH3cdaMYXikQFKaDRQAhNKevakpaAAdaKO9HegBO9A6mj1NKO\npxzQAKT1pB3NKKQHA/GgAHSt7QP+PR/98/yFYXbFbuhf8ej/AO+f6VpS+ImW\nxp0UUV1GYdq5vV/+P+T6Cuk7Vzmr/wDH/J9B/KsquxUdyiOppRSDg0Z+8K5j\nQKUUDpRQACgdqKB3oAKO1JR2/CgBT0opCOKUUAFJ3FDHmheo700NCj7hzRjg\nHNKfucikI+Uc9KCm9B38PvQQCT6kUdiKRiR07UiBB35py4yT260gOM8DpRnn\n69qAFIPBxSA9qUn5cdxSL05p9AGnvSYwOOaOvegkDAxk1KTAP4j8tTw9eB+F\nQOQucDHep7fBGcY3daUloVETxO7J4c1MouWEBwPWvMp7eKW7Y747dAixsjNy\nB3/OvRPGIQ+H72NpWjSRRHuU88ntXlWo2xttUTMULxTncSHIkJ/ve4xXiYiV\n52O2gtGZfgWGYa5qUkm1tkF0gfdy2GIyR2r6J0pDHo1sh6rEo/SvnfwKsf2/\nW7qJIyz2szlgxJIMhxnPTIr6Pt122MY6YQD9KeEXvVLdiMXpynK+JchYAI0c\nZZiWOAMnGf1qoExbOg2KOFyRlX5HapPE7s11bxq8Slo3ZXkXIzuGBj3qork2\nP71hl5F5iGQST+lcctGdFH4S4rwpcQRuvyMwCnHG7P8A9avmzwdmf4la7IWP\n/H7J6nPznmvo3mK5idGzHICoEjcA8/d9On6V84/DU+Z411h+ObyQ8HOfn9a9\nPLvtMyr6n0dpAxEvHb+taiE4bI6Vm6Zwihj2rRJ4xXqJWRxtCKeuRTgQFJ6k\nU3jFCnAOKZA0ZOcCkc4XGKcp+X1pThutA1dbjEOD0xS4yD/dpSBnqKQDHSmW\nOI4xj0pPvLzSngCjtSMxqY6U8DGKYg5p+33pgAHejikXpSikAo9qO1FAwRQA\nGiikboaADg0vegZpO+aAFFGODQKKAE9RRkZPvig9aBQA7tSDj8+TRRjrQAVu\n6FzZv/vmsIdK3dA/482/3zWlLcmWxp0UUV1GYdq5zV/+P+T6D+VdH2rnNX/4\n/wCT6D+VZVdio7lE0n8Rp1J3rmNBaKKKAA9DSDoaWjsaAEXoaXtR/DSdhQAt\nFDdKQ8UAIegpy9R9aQ9vrTh60APbBjbB+n500jNLztOOtMGSBj15oAeMjr6U\n1fmXnOac2CMjrR0BNADSvJpTjIz2oyAPxprcE/WgAOAM+tCnOe/FA5LZ9KZy\nBxQUlcdSAZqMZ56n0qY/xDrwKLg0MbuM1atR8w2+oqrglj9KuWRzIOmBis5s\na2KPjN1TR5MlAN6ffOB1rzSUfaLtXuG3SrIGjkDZKr/dHbFejeOJo4tLQyhi\nrSqPlAJH4GvP1iSFYxMYFcSq6qmCQx7e1eHiH+8sehh17pg+DFUSa4RFGuYD\nl0P38yn+XSvo1eLVf90V85/D5FM+t/LGoZIVbac5PmdSfWvosnFuPpWmDlZ1\nGc+L15ThPEUhiurViwUC3OGIz/EOKj2SfZYPKkdEVo8CNRyMnrT/ABK++8tk\njWYyNFgFE3Acg8+nSmWa7o4w0jyhpEO5eFzzxiuKTOml8CK95bw25jkVAVdJ\nWdt5YZ2tyB+deAfCAeZq944AKtO5Bx23HFe/36rb2DGR2WGKCUsxAx9x+9eD\nfBCMPcSyLnBkYj/vo16uXfAzCs9T6K00cKB0rQPWqNgn7tauAkvXrLY5WOHQ\nZpDwTSqSQSaQ80hIb/ATSnjODmkQ5Tk5oZcggdTQWLgHqcU4gZwaaBx9Kccl\ns5oM2Nm6Yx2pY1IHqaf97kUnT8aQgAwaUd6RaUZ7UAA6ULSDp3o7UAL2pOxp\nR0o7GgBKU9KDQaAAdKD0oPWigBB1pR1oo70ANPX8Kd3P0FA60DvQAvamjqaX\ncPWgUAIv3a3vD/8Ax6P/AL5rC9a3NA/49H/3zWlL4iZbGpmikorqMxe1c3rH\n/H/J/uj+VdJ2rm9X/wCP+Q+w/lWVXYqO5THWgUnc0VzGgetKKB0ooAB3oB6U\nUf40AIPu07tSUUAIaKUCigBPX60o60Uo+9QAMMfSlUbVGBnNGMsMdTSgcg56\nUABUHOOlIfv4NIG5PvTjy1ACevWmH7p575pxyWxng80knGeaaKQK2D69qRur\nU3n6GnLyxz0xyaBiKcfL0FLk7GxTdh5HcULyppCkKvQ55NXLQcnB9KqqATir\n1ovKgkdRUSjcEzmfiRdLb2tiJFZ0ackqB6D17fWvM451txcSzIJLhUWRIXUp\nyRkDPc+5r0X4luptbWPEhaRnKeX1BwOteWXhubpyZXMccKEuwYE42/dU+p6V\n4VbWqd9G/KXvhg5ltbqUgxl5LVeRjJLZOPavoeb5bc47Cvnv4VKH08swlwb2\n0iAbsAAQPpX0BfnFm/Y4q8PZRmY4pWlE4zxE4jvirPOEWEM3ljgdcH35xxVe\n0jzHpwuI1RlbC4kyVODwfU0eKHcanKSJwvloA2R5fQ9vbqabKpiW0RYrYMjO\nQWkx/CclfXtXJJe8zpp/Aij4n2SaZqSNvWOKylkIYfIRsfr75xivFfgPH+6B\nOMk8ivWPHU/k+HNYZ4RIps5UaSEj5fk757DP615l8Co1+wxkHsOh6nFetli/\ndswr6M9/08YjA71ZHUnOcVVtQRCpA7VYOM/hXpJnM0OJ5NN65oYfMc0D7uV5\nNNBawYwMD9KVeufSjPHNGeKAHLzwTQ4GCc0ikHpTjnnighkaZ454pzH5cUbt\nwH1phORSEKT0pwbrzTc8YxSA4oAlzwaUcimK3NPBx3zQAUHoaAc0UAB6fjRR\n7UCgAoHSg0mcUAL3FA6CijFACd+vagdSPYUdzS8mgAxR2/GlpKAAdK3fD/8A\nx6v/AL5rC7Vu6B/x5v8A75/pWlL4iZbGlRS4orqMwPSub1f/AJCEn0X+VdIe\nlc3q/wDyEJPov8qyq7FR3KXej1FBFGOTzXMaC0UUUAFL2pKD0oAQcilpBwKX\nPy0AFFAooAPShfvD3oPApuaBpXJMdADjBNIeOe9KpzzmmjO2mOwp69uRQc89\nM0Yx17imkcYOM59e1JCQ4DvnnpTW4NAJydoA5zSDlsmhjtqPJyBQ2M8HmkA6\n8U0ryD1AoQ7ocvfrnFISAuO1MwR2+tOUDBz+lMUgXO/5euK0LPgZbI4rPBxy\nK0LP+HPOBjFZTlZDSOK+J975B06IIx+0GRWYdIwAMsT25ryPVrkXCXzmQM0K\nMqoo+RVPGR75r1r4gai1rfwoyjyTbSBgw3D5jjkfhXj+r2RttHvhdBXEhA2d\nAHPOAfb2rxJpOpc7YX5UdZ8IxKdLhEkbZfVo1xuwQFQc/pXvOo8WcmPQ9fpX\nh3wsjElrprCEKG1Z2Kq+AhCfrXuWp4Nk+RxiqoK8JszxPxo4LX32+I/NMXyo\noXfIPl4Un+n605ruAPEJGT95bu6/JuJBIGd386p+IpHFxdNK8OyOdgsYBY+x\nbHSnxvFsgaI+ZH9meIiMEqCzL39PauV3udMfgRzfxV8tfCniOZjCzR2DRZYE\ncnb90epz+lcZ8EF2aZDls5Axn6VvfGy9K+C9fTOwvHFHtYc9evtWT8F48aXD\nn1yOPavZwOlJnLWfvWPbLUfu+uakTnIxk1Daqdg+lWYzjca7uhjsDdT702Ph\nfxpQTQo60bEpgMEmgqDwaF+4Q3XPWkUjHNMLi44H0pWOAabkheeKCffikSxA\nuFA65pzUinCevvSHhjQgS1FFFHpQaY2C9aUHAI9aaOtAODnHNJEkwxjIozUQ\nOCakznkUALzikpT0oNAB1oxRniigAFFHejvQAhHNLik/ipe9AC0g/rRQO/1o\nAOoNbug82j/75rBzgVvaBzaP/vn+la0viJlsadFFFdJmB6Vzmr/8hCT6L/Ku\njPSuc1f/AJCEn0X+VZVdio7lL1o7mg9TRniuY0AdKM0nY0DpQAtGeCKOhpB3\n+lAB2pe1J2pR0oABwKKOtA5GKAEPakpaCMnrQNOwK2M56Uqn5TzjA4pQDjB/\nOnEcNyKYN3G7eD9BSZAJ79KUn5SBSMRzyKQJiAe5pFHWn9lxik/i7c80BcUd\ncUwjn6Gnr68U3Gc0JCHA5J6YxTOcHFMDEEjjNPXoaZTVkCEbhn8a0bc5TIGa\nzhwO3WtKyHyORWNRaDWxwHxCki/tu2hmfYhhBByBuO48V5vrYt5LS/dSFPls\n8UbEfuz34967/wCKU0Y1a3BiZ28lQWC5xknA9jXnviBy2jNIqKu7C5cjedx6\n465rxJ/GzvhrFHbfDRt9j4b5iYz3lxKTjGSN33RXsV7zBgHFeQfC7a1v4QUE\nMdlzLyOxzXsFzzGPqKdD4JLuYYl/vEeR6hKY/E1ysd1timndt0ablLf3G+lX\np598Vvbklk8iNlVAEXfvGB15z/Sqd9PJFrFzEkjrE0m4R+VgNubGQadLNA97\nLNd2zRvb28Uin+EANj+tcrudfKrHFfGaQxeBtZeYsLm5lijkd13BsHgDsKk+\nD8QOkwYB5AP1ql8cbyN/AskUay+XLexFc/dIIY5P5VsfCRNmj25OQSM5Ne1g\n/wCCjjqr3j1W2YbO1Sjk46CoYMBRyM+1TKOT6V3mT0Hg4GKaepo6gk9BQOma\ndhABnr0pcDP0oJGODTQcknA5IoIYhByQTTgo9c0cFuD6ijOCaVguGMD29KD/\nAEpST+BFMJIBB9KNgTAZ6ml7Uo4UCk65pg3cKPU0uMUh70CDrmpAcIKj9adn\njFIB/Y0c0g6fU06gBppaM0nagBaWkH3qQf0oAU9aQe/40Hv7Uo6np0H+TQAv\nekHc0tIOmPegAFbugf8AHm3++awRW9oP/Hox/wBs/wBK0pfETLY06KKK6jMD\n0rm9X/5CEn0X+VdIelc3q/8Ax/yfQfyrKrsVHcpd6Wigda5jQB3ooHeigBaQ\n/wBKOxpB0NAAvelpF6UtAAelAopaAENIcnGKX0+tFACqc5oBzkUing0dAf6U\nAKw649BSOeuO1CEspzSnJzz3oegCAH16UYO7vSq2W49aD1yfWgBM4xkZpehI\n7Gg9aQ9etADcY4FKvAPNH8WaRThfrTuU5XQZ/hzWnZhthPes2MYcZ/StWIjy\nWOTjpWVTYF2PMPHzA65cpMjE4QR4JGSFH/16858VPAlgjsD9qO1ACvIO4j9K\n7/x/KG8Q6ggl2hfLVmdfljO3ORXBeIsDRLeZVdZ5LoO6hsMABgZz2PX8a8KT\nvNs7o7I9D+G2Bc+EkzyNMkkORzyTzXq9y4Crz3ry74fxBdc0MAuBFoy449W5\nzXp2ocInPXP8qKb9x27mVdfvNTxnVdRka/aW2LqomOGnOVUFuH+laVzHJLeX\nAeSJpWjSNyDgscE7WXoOcfXNYMsyz30sjLMoT91CWYYfGTux6YFbWpXVyNQn\nigtg5MihnQZ2BV4Jbu2aix1Xsjzf40SzzeCbOaeYt51+iY245QHP5dK7T4XR\n40iAYU4A5HfiuJ+OTj+w9DhjWQRzag0gLHjO0AgV33wzXZpMIHTaAK9fCK1F\nHHU3Z6DECc4qZcjGOtNi+VevUU+M5rrWrMeYOxphJ2N9aeeG9qTu1WFwUcY4\npT3pO9KoxnFIhsTjaQKUHC0zIwB3zSnOBjrQAvJyPxphOd1PHQZ703B2EY60\nwF3dPpS0h74paRVgpPelNJ60XJCjiijvRcB6tzTz0qEcGpRzQAHpS5paSgA4\n5x1oo70d6AE70L3xR/FSgdaACiijsaACt3QD/oj/AO+awh0rd0D/AI9X/wB8\n/wBK0pfETLY06KM0V1GYdq5vWDi/k+g/lXSdq5vV/wDkISfRf5VlV2KjuU6Q\ndT7UoPNGOTXMaAOaAetA60g70ALRjANFFACLwtGOM0DpR/CaADNOpopaAA9v\nrRkDrR3/ADpD/KgBAQe/FOI3dOOKCMqP8KD174oASLgNmnMfmNJjg0vc49qb\n1AQcDr3pT6+tNPT2pwIOBSAAOT1NIDndmkHVsUqgfWhAN65PY0o6HpSc42in\ncZPXJpN2AVAS2eetaS8QH5c5x/OqkMefXrV6NP3WBjdkVnUfuNlRep4r49vk\nXXL/AM2ZGjLEEMo+8BgfyrgvEc7S29r9qxmQYy64YgAY56V13jLT5ZNWuWDw\nJC1wQJpsDdliCPwxXL+M4DLN5IuIj5EhwEXKkcAMp7D2rwrHfHoeweAFEnia\nNkL7Y9IgAHbk5rvNXz5ACNiQI+M+u01zngOx2arqVzu+TyLeJFxjACA5re8Q\nxvJaThGYMIXwQe5UiikrUkzGo+arY8gTSX1GwEU8EbSrJyOnIB59wK6SCydJ\nr1/tatA195hxFtKEJyrZ6jgYp+nW6vOtvF5plTaCz5yuOvNW5rW4kMkCSGbE\njNIXxwOMcd6zTudjseEfHG5me/0G2853tTK00O8DPOOa9T+HyBdMt1XoEGa8\nz+NUZ/tvwxDIiqTvdpAc7skdq9Z8DRBdPixx8oGfU17mHX7pI4Km7OyQDHNP\nUY6U1RheOc8kelOx2rp2Ri1YaTyc0HO3PrzSYJJB7ZpWIK9OlCdxdBPUg1J2\npihV69af/CecmmIiKkoMdQaF4AFOxndSdTmgAzjafakB4A9aU9M+lIFAGaBo\nCMt+VO7Gk5L9KM89aZYHoKUDOaDwKSkyGFFFHekIKVTzSdqUHFAEmaWkzmlF\nMBDS45oNGfyxQAUgPJoFAGM8dqAFoXqaKBxk++KAD1re0D/j0f8A3z/SsEVv\naB/x6P8A75/pWlL4iZbGjRRRXUZi1zmr/wDIQk+g/lXR1zmr/wDIQk+g/lWV\nXYqO5RHWl75oo9a5jQQdaF70dqBQAtFFFAAPu0dqQdKWgBMUtFHagBD1oPc0\nvXFIenvQA/nAptOpoyWHFACZ4NLjrSkYY+nrStgCgBpGSKRclz6Upzn8aM4f\nj1pXAQDk80bgFNJgknAHahOc+vtT2RUdxYlLH3qykYXLMRtAB96W2Q9TisXx\nDq0kC3EdvGCqIGZ2bIUk4yV/z+lctbEqnozVUud6FnU/ENjYTR27ebNPIcKk\nS7j+J6CoLPxjatBcTSpJFFC4jYFfm3egHU15zDqWp63fSvpSKsG/ZLdTttiL\nL1KsOT3zgYq7b2UWozF4NQSQS/Lu8g+VIxGSx/u+g9a8upiKj32OlUYpGfqk\njX6zRJcLFEZGfa8e5mUsScfn1rl/FFkscenxWqCCFL+LzHz87LkYBr0GO0a3\ntJFuIYZUjbaF24Ow9cNWLrdq99ZmN2jAgZZE2D0IOCfWsFPlLR654UVjNqzY\nx++Cj8FArTniM7TRHo0Z5p+hqotpWUfekY59eamgYfbXH+zXbTopQpruefKb\ncmzCGmSwXBZceXggnqSe1RpZsqSMVVpSWyfb0rqZEVl5HcUxraNjkrzRPL3f\n3WXHEvqeC/FH4ba34j1jS9U0aG3dbJSJIXfYzc5wvatzwz9s0/T4RdafOoVT\nkqQ2wjqGx3/xr1q6kjs7SaaT7kaFj9AK+eIdQ1UarcSSW8g88s0cUcw+aPJI\nZucA/WtqspUIpXNKP71tnpdvrlqzAbmQkbvmGM1dhvI5vutzXjvm3F5DPdPG\n6xxkoztw0YPOR69vzqey1+80yOKWSRp7OQqouByoJ7HHQ06WLlJ2kVUo6aHs\nMThnOaeGBXj+KuV0HXI71AVf2yK6W3behxXcn2OVq2hMuDuJFAB+lIOhp5OI\nzRqSNQ5U570g6Ghfu5pqnLE009QFP3TThyopOnXoRSjjGD+FUNaCAcn3oHBo\nYDtk01Oc0XHcf/SkpaOhNDExM0UUUhBSg0lFMCRacODimL0p/U4oAOppB2pR\n15oxQAnt7Uo6n9aP4vwoUdaAAHNA6H60YoBzQADpW9oH/Ho/++f6Vg1vaB/x\n6P8A75/pWlL4iZbGjRRRXUZi1zmr/wDIQk+g/lXR9q5zV/8Aj/k+g/lWVXYq\nO5TFNHU04Unc1zGgnalWk7mlXvQAUdjRRQAn8NKOlJj5aO1AC0HpQKKAE9KG\nyKU0189qAHL2B6Ug+Vhj0oCnOfXp70YOcn8KQD2Ocjtim9aVjj34pAR3GKGA\ndfzowN7Z69qBwDgg0Z5PTNJIew3JyafApZ+DxUbHke9W7NASCSfwonorjiiS\n4lS3gkZjwiFjgc4FeOeNtXF+9jpxaSObUJW+0Kj4KxINzY9Pl49smvRPG2pC\nzghhdW2TNtaTOEQDuT2AOCfpXiS28/inXft1jex2r6lM1pay4+5bxDM0uO2c\nceteTV/ezv0R2UlyxuzRtW/tm6utS1BJIvD+lxiRLO3OA0ecRxf8C5JPXg+t\ndLYa0Z7Jjc2V1O6vvjzEsMMfZY0GcsFHOcd64fR9kPiia0t768l0sgIqzYBk\ndDkMQOvX9a7S1vBePJFI8CyKpKBwcIc9frXNVfQtNmhaaglzFbtfOzI7MZPm\n+bjj5fQd/wAaZ4ksJrbZGmJLaRPME8XCtx0PuaoxwfZbJng8tgSWlWb7zHPP\nPZa2NBnFzY3mmXE0EYkV3tTuGUZs8Yz0PYVmoqSG3bU7D4feIbbUfD0LGVRO\nrGJ1LDO8dag8ceI30HTnuIHSOeWdII2kUsOeuQK8w+ELiPw9Yx5yZ9Rcktx9\n3I49+K6X4jyzSaTamBgtwXllQuPlx0HXvWkqk21HsZexipX7mevxP1QbV+0W\nrkjO8Q4De2M5qyPiVrn2RJGt7MFjt3cgKfcVzeg2F5PremL5aORNFvBUYCg7\nm/QVH4hghvPEEiFpIx58txIoO3PYcenpT9rO9ky1Si+htXvxI1P7He2etRR+\nVcAxJLEmAvHIP1GcVy+reL7SS3it4bNIbKFAZGhVmmVR0AJAHJ7+9ZGvTCPB\nks71ZWkDIwXzEJA5PsMYqrFLAggeWCYSMCUWXKK5PqfT/wCtWjblrLUcbQ0R\nvaVrN5qWqLqUfn26Sn5I5sFtqjjOOMfUdK3PEFlbwyWV3b2yxeHNUJh1CJc4\nEpPUA9BnBGOua5q1ZoJfs92szx3CDa8I+ctnIQepx/Ku00LUo9fXWvDjEgpa\nia2x8xR1Gev94ZHFTF3loE3pc4Tw3e3WgeJ7vRb8/vLaUxg54dezfjXtejXQ\nlhDBvvY6182eIGmtNb0rUWcs97CWcknGVYr9e1e5eDLsT2kIJzwK9ik/cTOS\ne528R+Xr0oboDTIH468UMepzmtG9CEh8Zwh7mly2cHG09aaRmPgcmkAYdaWw\n7Dzwnp6VH8zBV3YH8XvQxbZk+tIAdo69c8U73DlQ7lTtU4HvTkAGcUgwQcgk\njuaVehoRLY7PIpX600UHvVXJCjvQBmikAUD0ooPWmAoODTwcmo/epF4xQA7v\nR3NHegdTQAn8VLxg0n8XNA9ewoAWkpfUCkHSgBRwtbug/wDHo3++awh09a3d\nA/49G/3zWlL4iZbGlRRRXUZi1zmsf8f8n0H8q6Ouc1j/AI/5PoP5VlV2KjuU\ne9FA60tcxoFA6UUdqAFHQ0g7UdjQO9AAOFoHSgDiigAoPSikPSgA7Uvb8KQ0\nMaAFj5BJ9OKUnCjikyCT64oZspxQgQoGc57CmdSKfnOfpTSp3HGOCKCkIQM9\naUAbScc0d8UbNoYeppjY3g9sGr1oGwPYVS4yKvW/IAz6/SsquwovU82+KGrW\n32XU7iUMILCB0G84EsjcEDntkVyHguNNJ1jQbON1GmvbSWqF/vJJOm7e3tkY\n/Gtb45+Wvh/xFC3liZreGSFcZIG/5jj8OtYWlw2+qWpmheTyTDF5ctvkNERj\nnnPAIOD65rx7tRv5nbfRI0YrQ2d+0E8QhaCbcsqxgZcfKec+3SrGlK91JeSA\nbN8gVU28ZBOTknv6Uy/B1mULfQSw6tC+7cMkTKowJRjgOe461PZNaRmdr3Uv\nssBZVIWPzJJDjkIeg981i9XoaPYq6rHPG0gjYMFGSkhwCM45J6/hVkstrGEt\n0Etyk28SNhmGBwARxn27Vdj1PR7KIm2s1nUYKXF++9jyedg7A54qnceMrlVR\n7CBXkzvKRWiKmM4zuP8AepPQSk+xz3ha21Sy1Tw1b6hbzWjQX8jlGiYkq5JD\nkjIPJ/CvQPFOlXGrXoSOG9mtgmyOM4VCAODuPOSawNE1XxFquplFe5WaUYj8\n6VUSPnH3QOcCubvtS1G7ml8/UZpLoTmPZDI/zMOu0ZHHpVS12BLU6/SNOvfD\n73GqavJbwJb28hjCNuxM3CqRnk4rn7bR9Ynlk1CIrI82/ezyhSy44GD2rItL\nW5+3QyTWU0yvKRGTcbfruBzgj19a6LUIbl/DLanE0KpasiuT+8ITON/QVOvQ\n0hZN3Eu7Q22kW0VxI63Dqcxv/DnsT2xXPSTI09razyIYipLM3zqoUdsetegR\nxxXejyPCGMET+ZMHYMy8ZBJx90+lYHhbSU1TxG2x4otNRftEwC9lOSPpwPzp\nwv1FO24gMXhTw2LuBp11nUl3whxva2iyQNuehY9KzvhqLmy8e2cl5CEuJX+z\n3Eat8o3Zwx/2uxp1/wCJbK78aSazqjXSWVuD5SRopXdyq5B6DaAeM9awU8Wa\nTD4kttTMV6iwzAmVJt4CBiSMYHNbxVpaGSj7ruYHxbhl0/xS9oPlgtbmRY9v\nJCtISP0NepfDKYGyhMpGSPWuY8ZW1nr3iWS61S2uoLG6BnRiNrhiMxg+3Oad\n4U1A6JOLO9Yo6HHPCt7g9666VeKiosylTbZ7naMHXOTx2qdlG8jn2zXMaRq0\ncy4V92eODXQRTCRdwOfxrrjK+qMLWZYBwQKAPm4qNGPt0qX8qtag9Bh+6vpQ\nMDbzSnjFKfu+4p+hNxOuT706mpyOlObk00SJQP0pcYpBQA5uCKbThyaQjBoY\nCUUUUgDtTkOT2/Cm0oHNNASnv6UDvikUZzQD19aADrnGPwox1xjoKU/hSDvQ\nAo/P370gPH4/n9aXtQP60AIDxzj8a39A/wCPR/8AfNYA6Vv6Bn7I+f75/pWt\nL4iZbGlRRRXSZhXOav8A8hCT6D+VdHXOax/yEJPov8qyq7FR3KPelpO9Ka5j\nQKKKKACgDFFHXPtQAY96KM8ZooAKKKKACkIyaDSd+DQA8fSkAGD60q8gik6J\nkdTQPYDxnHpSR8ZB70uckimnk8GhDiKcZOKQHnrxSKM5JOKQ8E4FFytxy8cV\nbtOcZyRVOM5JFX7LJbHH1rOfvaE2szz74v20f2JnYL5txazWxc9B8pIFeV+A\nblP+ELsXhkMbRxETuzlPu7sp156Zr3H4qwyHwtJLHGJBHKjMpGeDxn8CQfwr\nxP4eeHHg0Ga61siTTVupJLSyK4a5YH7znqIwecdCQK8+cUlKB1Qd0jpLXUTo\nuif2tqMjHUGJk0+2ICeWCMCeRRznGcA5rz+z1e91KBra1lmitXkYTui7mlct\nlnJ/hz7VLqE8/jHWroxq7WULN580XBnkHUgHsAABW2kLC2s7uygltbOKQRNl\nfk84rhVY9Sf8RWDShp1NEi5p0Wk6dqt/K1nPqEJiBiHmEGE45LE8kelR6jMl\nna28lvbmPS3PmRNIxZWYdcDsR6GtDWYbayl0q9tWL6de26RTs/KhwSHZyemG\nBHHSrmi6aL+z1XTYoYpIJ4pJbc7txjnQZ4+ox9ayauNSK0Oo3dpqNrq5UART\nLNJBHhQVHBbPvTPFMUXh7xTeoiyPHct9rt2WQhQj8np15/nVXSHa802CW4kS\nTawjaOZfmYKOSK3r6GzvtP0i1tpxNdJb74ZWYbQp6w7uoGemaQ2veujEnktl\nuBII5fLIUE7NoMhPIY9q3NAdXtNegvZ4Wg/shn2ngRkH5Qx+tZcLaJHhb7X7\n62EmU+zJbhnGDyOmOD3xVXXNWgfSxp+jW507SpUVJru4AWe9CnhQo6A85qqS\nSeoNdC98N75v7ds7E75kuh9nmA5VlMeS38sGq39of8I7oXiK2tBmNy6+fI25\ngqkgxgepyK3/AAxGui6bqHiK5t44lWIrbuxwZJCMbl9FA4HrXnmrXJvbnT7O\n4IKbzdTkrtwg56ehOOKtaiS5myXSHTRryzvdQtYdUulRGeOYjyYdwG1FHTdt\nxyab4gvLGHUb022mLELt/OMpHmMq56BAdu4duOlV7pw12v2WGQK0hlzIg2HI\nHH5HpVbxBYLHClzEWS3VdsgY4APoAP09KcdWMvWOuT/2ncwSA6hYsiiGG6O1\n1yBnJ6jHbmug8OS2utz3iJGJijF0tpVyVA67D/EMemCK4zRNFOsa5o2muWt4\nb9wgkPUDufZvStXX5R4W8STWmiXk8KrgRXNwAzxyDkDI6A9KqdO+wufoaGqP\nd+Gr5jC80mnSqWgdu6emfUdfpXofhfXEvrZHWRWBGRisLxGLbWNI0rWIhF/Z\n2pxeXKFPyQXBGD9Oa4TwdqNxpWpyWN2Wj2SGMK3VSD0x+X511YeTXus55K+p\n9CQNujBqcHnkdawtGvFmtlbJKsOMmt1CCqkeldkdGZsdnmg9QBTGPoePSm7j\nincixN04pC5FIrEqSexppbk00Il64pADk0LyAR0pBzn1piFXrSHrRSgZBoAS\nil70A9aAENLSUtMESr0pAeaAaB1NIBemaQ8ZoHOT7UDrx7UAL2NAoHeigAHe\nt3QP+PNv98/0rCHQ1u6B/wAejf75/pWlL4iZbGlRS4orqMwrnNY/4/5PoP5V\n0dc5q/8Ax/yfQfyrKrsVHco96XufpR60d/wrmNAHeiiigAPQ0Cg9DSL3oABy\nKUdKQDFLQAUUUjUABpO9LSHGaAAZp2eBSD5eTT2bIwKAIx97pSAdPrTwckj2\npF4oGnYacBhnpmhjk46HNIxyfxzT4RmQA859KhoodCnQ9TVuNlhTc2P7uPU0\niKEU7gNo5yTXCeP/ABDNaRPZ2shjnljYvKDtMMeCc5/vHH4CuXEVbK0dzWEO\nYpfFLxraLZXWlbsxqQLuVRlY2ByFH97nAOOmRXieqare+J0ktLF/smnKirM6\nAguueEH86u26y6yAPJK6G0oMmTh5nGcNnqBnoO5rf0+wsY3m+1rlF++wGDxj\n5uP4vUVyc/Jq9zdQ5VZDtJ0MxQJFbwCNbdBGEDbVIIJJOfp+tbkdjNqfh3WN\nChYrfGaPULeFpMNKm0BgB7Fc/iKzdHuWYSrPDcRmc7EE+QSAcj5T/CQKn1bS\nYdRu0vJLx7a7dA8YiO0KwPYDnA4rn5m3dl8t0Z2nS3VvZXlhOkZtbxXMkF5k\nAP8AdDR+jZBzjrW/4Bt1stY0fywZ2ZjG7hgQg2DPHasq9v8AxBPaXMNxfwJ5\njCMPsVjvGd2/PQAY596y9J0G91W9s9Otrl/sroHublT5axxhssxbv8vT1rSM\nbhJWRNbia2a6upY7qOxkncJ8jBTyQQCPX2ojhkW8kMUssVurFtidIx6YHJ+t\nO8YNqniTX7Wy8LwXL6fahoYIYuFRFH3iTxk9c1qWvhe4sYI4/Ft/b2MbbiYL\nUiS6nHbkcKP60OIlIqaessV80kMVzd6lcKrCKI72A/DoK6O/0yx0YNf+LJFW\nTyk/0CCQGRyDnLH+EfSqcvjIaRZvY+FtKaCRyMEMGcjHLyyHp7Y5rDsfD8t5\nJPeatKl5fby5hB3QqT3bPLcZPpSUUtQSlLc1La+n8b3uq3M/7nQrO3eSDauE\n2jGFT1yep9q4qwk+0Xc8iRlxOosoJN2CMHc+B37DPauw16c6H8H765iVor3W\n7nyEJP8AyyXpj0HHb1FZWjeHdRTwdZzw2a3EawDYwbY2S2Wwe/bmtZxsrjpO\n90Z1xIWmdFUtOWLKFXIXH8J98YqqJpGEsbxKqKVnHQqOTlfrzWibqS2AhuUk\nXzZcLMRkg4J2g9/TNVxNC6Rx5leZCq4iTczOScDPeoihNWOl+GGhCz8T3GtX\niPDp2n28l0FlkLMH5AY9ugrz8XEuoG7u4vMea8vTMqoOWRR6eue1ena19p0D\nw9baOkQa9u8TX67uruPliHfAHWuMk1fUdEsYI7OxsLd/K2x3MUQNxwcFlY9P\nrVqfQmC15jb8CX50e9l8J+JYXtLG/h8weeR/oz9Q/wBc9feqfjvSZ4bmSRlU\n6nby+XdOnymWM/clHr25HbNcDOl5cahFcXcMrx7dwQyFiT6knsa9l8Jyy6r4\nAvJbxludQ0jdal2+80LD5Rz6ccnsDVrR3W4Na3ZnfDvxH9pjSORwZFGG5x0r\n1a0m8yAH2r5t097nRPGX2O7K/aGVXkC8qGPv3yK980C7Mtomcciu+N7JnO92\ndCOaQj5sA0KMnHbFKyncMkEVqkSKDjeKUKKQcPz3pR19PrRIlj14GKKbg84x\nilAwOSM0kyBaXsaXpTR0NUAq8/Wk7mnJ0pD1NAxKUZpP8KAOOtCEPByadTF6\n08DJ9qYCnjt+dJ/Sj86Xr1pAFA/H0oFC8D8aACt3w/8A8ej/AO+f6VhdvX8a\n3tB/49G/3z/StaXxEy2NKiiiukzCuc1f/j/k+g/lXR9q5zV/+P8Ak+g/lWVX\nYqO5SpD3paB96uY0FH3aSgdTRQAUtJRQAUUZ4oHNABSGlpaAGtQaD1FNbpQg\nHHpxQ3OO30pvqPSlPSnYbQhdVUe9KGyR9Kb8pVs9R0oXqaQWY5SMcirFsMOD\n+ANV0HIJ6dKuWuCDnGBUTajG41HUj1O5hs7F5bglYo0LuQM4UdePevmfx1cv\nqWrR24E/2m/le5lbef8AU+mOwxx+NezfELUvNgjtVcqkj7pM8KVUcAnsCa8a\n0hZtSvp9UkKpHqDFIkij5igjPDH+6p9a8nmvJz7HdCPKjodHgjks59r2sIYB\n4kRuIgpHH4gH6VeDxWjt5SRTRsoEMKAgSZ+8CevAyffiorTTYreGDyrRQGCy\nTPjc5AyQOvSpUllMzEK0kIYGLEZ3YPOR6dOa5KktTRai27w21rMs2TmVDEdp\nPOTyM8qccc9hUVxcWUV/LFDLLcSsfMRfJLnP8RO0EhemMcHmpnjPmiO2R2vs\nENIUIMUbc5XPXbj/AMeqDR9ck8LnXJ7LTZrtr/ZIsyuFaNFyDzzweTx61VPX\ncmTcdin9i8Q6/G5traS2gLESz3MYitolHGcHlunQetQ+K/Fen6Dp66L4Wme8\nuZ0UXl2B88qAYEa/3VHpU1v9u8TaVrmsatNcJBboskcNxJvwCThQOBmuO8OQ\nR3Wr/aXka4aPzF8rBHyoeO3/AOuumOiuyWubqdv4TtpW8O6nrFxdgw2rrDiN\nW5LDJJJHYHGR6VxNlc3HiS5uJGuPs9nvDGIPs+UDgk9ST6V6d4JSTVNP8VaH\nclY7m/Iu4EbCnJHIwOB09a8w08DTNXWy1JSke7yHL9s/xMwHSkrWv1CN22ju\n9FfTruR9HmtkSJUBSXGHik6I2fcn6VSuBqEl5eWMyKLksLR4w21hIxxvHsQT\nVTS7S3aKS1thIZBMGDo27eAwA2+o5616DqcdjYfEHV9b1JttlYWlu5LdHnKs\nFQepxURSvcuU7aI4v42Yuta0Twtpu4xaTbb5FXJGcDr+OPzqJGZbXTbbBCwq\nREu/hWGDke5P8qsaTY2k3ibUNZ8Ua1Z2LTyoAjzfNImdxA/JRVnxHqnhO7Aj\n0yO4dFct5247e/zKfXjviqqybsTR93Qh8Qacr+HLbUi9vNaXcubkljgOxxlA\nOhBHIqb4b6Rb2qX3inVpVaz0kmO3thkKsi/xseh4xiuQv9Tmk0yGzFys1sCx\niCDBbJ79t1dDqMhj/Z+ghhR1e51Ji4ByWRXO4k/TFVST6iqvoito17P4n1S/\nupbmePUGjku9MQHAkkBzz+GMCsfX9VtNRvLC5tYFEpAkunBYjlcbQD0JPJrN\nt9WuIb6byWZZMMA8TAfIRwfrjgUwiOGCFCIpMquEV8FfbJ6cU1GzuXHRDLS3\nRpWaSSV5dp+bIPHXkZ5FerfDISN4I8cnykil8k4O7Kn902MV5dpMqhjlNnyF\nDtcHjH8sV6p8PY3l+GPieGw2/aZmWEeSN+dwwOvqDVQ+LUirpE8Wu5jP4+SV\nO0MWPTpzX0N4WP8AoUQA68mvnieIweO9rbiFVVye+OK+hPCmDaR7T2r0Yyuk\nc3VnYRNlBilbPrTI+FyemMVJn5SQK1RI3+GnscHNI2MAY5oHRqT1JeogPBpR\nSL1NOHMlJImxIKCeKav3RTs4qriBec4o7mgHGaPU0wuJRxQaKWwBUq5xUVSr\n3oAX+KhetJ/FR3PWgBaUdab1pfxoAK3fD/8Ax6N/vmsI9K3dA/49G/3z/StK\nXxEy2NOiiiuozDtXOav/AMf8n0H8q6Ouc1f/AI/5PoP5VlV2KjuUgcmgdaTo\naM4auY0FHeiiigAoByDRRjANACfw0c4FA5pcUAIeDS9qMUhOKAA44+tI33cU\nrUFQRgmmgTG/xE8c9hTsfJikVeeDmhmIU4A/Ghj3Yw8D60oBGfWgLnmnNweK\nRVxFHzd8etXYxiE4JJyDx2qkOSvrV0cx/KCRkEj1rKv8BUdzwf4q6vIj6hbL\ndR2/267FkNyk+Wi/Lu/LJqlZXcFvc21kXWBLW2ECbVZi314HGMnFS/FGyRfF\nuhQKpMf26VpmIzmQ8r39OcVp6PayT6rLCkrfu8OYwo3Mc9Dnnn1rx5tRgjv3\nZoaPBbSWgLG5hjZwkTSIQ24Hpn+VRRefFqNwEaaONGMeSu4Dpxn3z2z1rp7Z\nbaW3SzBdotuFLvkk9cH0IxXNagsUsTDa0RiHmMi5AK54POMjIrivc6OVJEc9\ni3nSF55Yi6lkCyZZvVT6D+fSsiNoYYvLFs8QjILJ5nCnkkjrgHI4zVnz5/NQ\nx7SQFk86Vxkqf4QMfjz271Zu7KHUryPTrV8X+pnYVi4URj7zfkDW8EZzsldl\nbWL6Wy+GVvDKGa61e8LRKD8wiU4Azjjnp7VxuhaVc2Go6xbXjIbiC4MUoRs7\n2P3kQ9eO/FdL4zvI9a8eaRpelTRtY6VJHEIR8pATHPvk549qpzXKyfEXX8sq\nxtqEqhQBjIJGS1dUtI2OaNkyZYprSdL/AE59t3ApdGyWbcDhkwKL/X7HVZZp\nbuJre7bCv5cRkVuMEjjGD61NfuPNgS1cRM/CpCuVlJPUexHXpzVW5YNLafaI\npTIqEIkHKowOOSBxx9a515mq7ou6b4q8OaXKHs9MtjcwABZsSNt7g7So5yKg\nn1A311dG9nmlMr70N1EY+SeWXPGR0x2zTYYZI9Vtyl3uO0FImRV2Off+IVDq\nvnz3KedKHbzWEjTIdoJ7qPfFOy6Fqz3LelaXFppv5LuOG91SSMmIytgAe+R0\nGRjpzWRq9yzXUBNvJt8nf5L4DHb16DA71Ja+IFUm01mR5Ywdu8LiSM88A9x0\n9au3ps9MdI9d0y8u4mjzbzwzBQynPBPbjt9aFe+ordjL8R6JLZ3Fvb6RAbmG\n+ijurFFbL/OMMoOOSGB/CtD4l3r6RF4b8I2Lj7TY25mu5FI+V3GXHpmtey8Q\nTvrlt/Zlgls9ta+RZwK4Zo4sEkFugZj3/CvOfOmt9Q1DUtWWT+0bncsg2n5c\nnhBn/wAerppyjbUx5Xe5NPpRggsNat5I5IJ4vLuEkYKQxJU5z34yPaqFsfsp\ny80V1GykSDdkFQevTgj9affi3lKo8UuFkG4Lwise5+nbNGmyKIbaJlRBEPLk\nLqAWfORgjtVN6XLitSxHZxfZVkdHxM3yK38IBz25wRXqn7P2qWsF9q2gyMpe\ndfOCYxnA6D8K8vRbnZEwizK5JjkKkbznkH1/Sui8Gag+geMtJv2ig271gmY8\nlfM4wCOvXJNRCWo6kOaLRznjTTX0HXIoJMlrW4dQT18qQ7lyfUYIr2HwRciS\nxQuQcgYrmf2hNFW311ruAFvt1qwcE9HjIYH/AL5zUHwr1Hz9NjVSWPH4V30X\nocbPZo2yo+lTqMCqdtITGufSroyQMV0dDMG6mkYcNxTj3prD5TiglEadalHX\nJHJqNcZqQdD7UAwX7opwpqHsB0FPBzTsSxKVe9JTgMg0IBtBoo60AFSr3qMG\npF/DNAATyaBzS9aQd/8AOaAAd6UfdoHANAx+H8qAEyPWt7QeLRv98/0rCzx6\nCt3QebRv98/0rSl8RMtjTooorqMwrnNX/wCP+T6D+VdHXOav/wAf8n0H8qyq\n7FR3KWKQ/eNL60nciuY0FJopKWgA70p5H4UlL2NADRwKWkHSlFABQaKKAEzQ\nQQDg80NQxwKAEBOQD39qXHBHGc0jOcUhc4zjijYpRHA80h75HSmgnApMkyNm\ni4ctgbOQRircTgqVPQ9cdT9Kps2CQacj7ZFxwcg1E7SVhxVtTy/4raM6NqOo\nwpvmiMN1EYjlllU7XG09iuTWfo2pw3F7Z31ijGKSMWyXIXJcjueev1r1TxFp\n8WoW4kK7mQEHb1ZehArw/TZU8PTT6ODv0i8mc2coyGVifuE+v1rxalNq8Weh\nSd0d/o8m648i4SUszNtBT7xwckjt+dUtTnR5pRL5MgijCt5inOOflUZ5qvo8\nM9pc7Lq5lLlMIC/zdDlsdx0FXNUhaWytpJHjjZXYSkL8z+g9AfeuPlszq6GL\nK7alqFxOEjjhYKoUxfLhRjb7etGlXseieHtV8VzSRrfzyNYWJfgRqOGb8cY6\ndqvWawQ2OM3Hnq5ZgOMYPBPrj3rl9a0OHU3RZru4ex89n8gEqoZurY9yPwzW\n9KaUtTCqnLQo/C+BpvEcWq3LFWtkk1G5d1xhUGFX8f6VS8IPG8dxd30AIuA8\n0rHIO5iWz74z6c+tXdQu20/whd6XbKU1LUrz7POEfmG1jGSG/wB4k0zStFcb\nZTJG90AHJ80qBknAHYqOmK7JSXKZxWpYedRZwLHE5nudqu0bYx2Df7P1pLG8\nK29zbyXW27JESCMY2t39hn1qS8mhRFgMeYYkJDEhWPO7JPOQTSm8jErvBa+X\nL5WwOCH59W7cduK5bFldpkW8tLa4MbzzS/Myn+HOOM1MsyB3SNDNIsRAeSTc\nYyD1xx2qK2ltr5GucossLJ5rP992B7egHTjHWrRhJBaQowDMrKsXzDvknPT3\npNBHzLE2nh7LzbdFVowOoG3Y3OfXPGPxqfR0/tLSdd0eZvPntIvtlooTJAH3\n0Pr2rPN/JE1tCkyA3KmN0lXdlcjgEYrZ8E3UL+ONNtLfAVxLbuGGGVSp+Qg9\neRn8qqCu7FT2ujmLV5bWRvscyw3p2SW4YZFwuPu/h6/4VTutTPiFZ7eJcXyj\nCW7rneScvhvUnnmuj8a6da2vhzQtVt5MolxJA3ljaUIJXaD+HeuOvbeTVNIu\ndZs5Ixc2Uix3UUQKttHCS/TsfpWkYkJ3RkwOIr+S2kEgAO2Qu+WG3rn19q2b\nFYTCjAmWJgGGVGU56EVPbIviPQ57yaKJb6AASsI8HnhWb2PT61maAJPtM8ET\nefwUVT2I7seuM1ctUNHQ6ndxm0jt4sllVkZ9xBOeSQOxzVSeNlWa4WQQMk8a\nDgkhTzn3yRVFVljLJJIxcEY45Bzyv51s+F9Pn1vxZYackgcTSo0owRtVPmJH\nPXANRFalSdkeiftGSRw+HLC5aMNIIypbdgjch6V598GYWWwXJJHHPStn9pvV\nY7iG1sYjG80t35UYznbGgwfzJH5U/wCGFg0OmQAjAPIFenTVk33POvdI9ass\nGLJ7VfVVxnmqdou1QM8VcPyjG41vclhnJ6cU1jjPFJnBOO9HfB+tCFYVeuMU\n8/hTBjJI6Yp44YelAmC9M8U5TxTE6npTx0poTFoj6GkzSoODTEJRRRUgFSqK\niqVeRTQB7UDnNBPNC0ALigcZ9c0DpSAGgAA4zW9oH/Ho/wDvn+lYQ4Fbugf8\nejf75rSl8RMtjTopCaK6jMWuc1f/AI/5PoP5V0Z6Vzmr/wDH/J9B/KsquxUd\nyiaP4qB1pR1NcxoIvU0ooXqaQUALRkZNFIO9AB2pR0o7Ufw0AGaKQUp6GgBD\n2pH+7xzSjpSP0NCHHcjYnikQH5vTHSpAMnmhR15pssTHyDHGKUDvnrSnvQnT\nmk0TIjOMn2FNyMAjGc1ITk8VGydhScSk7k0coLHB6Dg46VxXjbwtbXVvdzeS\nDZThmnUAs0Bx/rEA75rrwcccZFWIpzwGOOOAe/pXNVpe0XmXCTiz5/0LUXtL\nm30zW9onRc2l4xzvjB4B+uK6W0uZHkubO8YzyRkSAEkIu3LDaO5+lbvjLwTa\n3sEyRqlvbztujlJ/495c/wAPqp9u9cBp+o6hpuqnQtUIbVLX/j0nUfPIPQqe\nxH8q8udPV9zvU7o6q7aKHSWZZDBJNlm+fB2tzznqpINUFvLaaGMPIAZvlQ8N\njAHT06VflUGKCN7VCEjMkiuNxifJ69x1zWZeWkMyG5t4vObgJhMK7Y5OByAO\nvvmuexbdyjqEttFPNwsjoQscTR/60nqWUcmqcyw2tw4tFRYE2qzHI2ncc7fX\nJ7Vp6TFHCC89yWnBMccj5YdM/UDJPtWW0lzHqKO4V4/OU7DyuM8jnn3H1rWI\nuUx7jyI7y5D28UvmOQrfMrEDgA88H2q7bQW1vfXbWstzLK1uxUS52lsYNaly\nkNxrMz2caR2/ml5RIA2PXGev0NZdt5peW8eSJoFk8uLI2lXJyB6HHWr3FYdo\n0dnEIp7jbE4PzRD5klYj1PfNWtSK/ZkRs7JWLxiLlXzyQfbg1h2PmtcSh2BO\nWZl3DEh9vrU9ysbpEZFkgWUAJGsnPv0/nT5biSHWIkfUrogqscCdWweOPWul\n8G30t74z0qWWONkslmv3lCbWESx45P8AFyf0rmpkhSQ7kKwOdmwckDjHzd+n\n86vJOdJ8IXl5POf7R18GzsVAwYrRD87/AInj3q4R11ImtLGp4ZuG8S/DzxlY\nR7ZHhYajaBxypYk5/Q1yPg/VbbTr61vblZTDcstteqwyjwyfK3HqCBz712Pw\nTV4PEd5Ynf5F5pLnBGBhSQD+RrziytIxA0UKSOcyLzyBtJ6e+a1dnG6M4aSa\nNab7d4X8U69paIjRmF7VoZiSjxE5Rj6HuPrVLSIMXRnuFjLu7CTb0LE9Megq\n/rWryaprNnewWjW8sdjFBcSSsD58iqAT6AkDHrVW3iDQBAAJQUYnGMDPc+oq\nJOxrFFj7VFKqBVBCKcx9i49ux7V6N8D9NC6lqmsTwsDp0GwBhg72G4/oCPxr\ngIYjKwIjdGj4IX5s45ya9R0wp4e+D01xciQPeytKxRipZc5Az6YGPxopK7Ir\nu0bHhnjLUX8SePIlZ98ceWGF6EmvdPBll5NlCAeAoGK8F8A2o1HxPcXAQqN/\nyrnIAz0zX0roVtstkA4x27V6iVkkcr2ubsK5Ucc0/PY96coJ6npSLwDnOeap\naGY3ABGOacR82M0hBzx6g04jkk+1O4SYgXGaeMjGfWk7nHrQeo5oEmKo4460\n4DAIpI/ug0GmK4U5O9JQnegVhKUHIxSUdRQACpU6VFUq8ZoQAeDS0mKOPU0A\nAp3aj2zSDvQAVu6B/wAejf75/pWCOn9a39B/49X/AN8/0rWl8RMtjRopaK6T\nMK5zV/8Aj/k+g/lXR1zmr/8AH/J9B/KsquxUdykKTq3Wlpv8TVzGg7vSL3pR\n0FA6UAFFFFAB2pP4aX+Gj+GgBtOoHrRQAGmkbuBQxpR0oBDVBAHSgH1p/agC\nmVzCkgH8KY33Tg96CetJmkSDf0puMnNDnJxQ3ykAGhlWEIxnnn1poIK7Tk+o\nFBGc4/EUzBwQahaFpFzYlzC0E67w6kMDyPp7GvH/AIs+GJponu9MhEWp6eqO\nlwDlriLktt9duP1r1qJih+YZH1pur6fFfWuSp82NSEk6YGOT9PWuPEwt78Te\nnOzseIeD9fj1iD7erGJo9zSurAFdqgNgdy2RVnSrw4torf8A1DLI0x6s2SCu\nVHOO34Vyl5HB4T8fyGQyDRr8EghcBST39OR+RFdMz3Fprs5s5o3jkjEhXAfd\nx8p4/GuCrC2q2O1NPYjvbnzrm4VLeVCQRvklCAY7e49KzL37UxinaRHMKrtD\nDa4QHjnuP1q/MIH0wuyxtCCSozt2jq5Pvnj8KbHdQS2sq2j7QY0G9hwMn7uf\npioRSQl5BPeXUtusbL5qIwKtubnjJHasg20iz3KLIrCAAwq4bY5+6SB6mtuW\nSW1E0ixwu8O1ZduUZQD8pPcZ9TWdpTRi6n85IZYJFIAbOVYcqSe/PIFVEVim\n1sWRZQ7JF5JVJV4Lr0PH44qOyh2CKa6lRRGjKGJ52jopH+etX44pJZ/MmtvJ\nMb87Ryc+oqhLBcO6qkLziKdnZZRhUDDAye+eK0ixWI7R5JppGeFVdwZI++31\nJH4VdtNOaW7EgBkiJKCJlxjjOYx6ZqohVLwCFUlmcDc0uFU7Qc57Y6Y+lWrS\nJRveYLNPJmVeSv4A/n+VKd+glqdn8Lf3nj12FwGeDTJInQ9W7gj2Bryaz+0f\naYIA7xyC6kYoCPlOeua9D+Fuo6fp3ivVdQ1WaOzRbF0R5mCh+mQCf4q810xV\nupS0J8uCRnCOecAtnAPqetbxt7Oxj/y8bOiNvJJdrA8nmI84TGeA3UdO9OvG\neG/LBnDuRhQMfN0I/D1pLdVOy5icqrOH8orkZA5LVKI911CWmaVoyRLEicMe\nwU9wfyrC/U3igSV01ArA3mSyvgNGd33j0rtfj7qp0fQNE8OWjbnW1MsgHZVX\ng4+tc34Otnn8Y6NCVjVftUbHB5IBB/Gm/tDSlvHuruxyY9MSILn7uW6+2a6c\nLFbnLX+JIzvg1p/+jrI4JYnd+te/6VH5cK8dTXkPwkh26XA2eCBmvYrNMRLg\n55r0U9TmexdTocGl2n36UiggknnNKOSeP4fWmjIPX8KOcnrRzg5Hel7nIoGI\nOc9aFzvoHsP1oAOfegXoOT7uKO9L2op7iEzSj+Kkpe1AAaSjvRSAWnD3plPp\nopB1/wDrcUo575PfFIetKvU5pjY7Hr096O2c/wCfeigd6RAg6Vv6D/x6P/vm\nsDjBre0D/jzf/fNa0viJlsaeaKSiukzFrnNX/wCP+T6D+VdH2rnNX/4/5PoP\n5VlV2KjuUqTuaUHrQOprmNAHegUev0pRyKAEooooAT+ClHSk/hpc8UAJ0NDd\nKXFIaABeV/Gl70nYfWnUANzQDS4xmkzjmgegjEUxic8UppF65pjSDuaTHU55\n96G4J+lLQMYvTmmkd8dRUmPSgEZ6dKzY+axGpOeRj0Jq1C4KkMeD1wM5qu2M\n47UquUJ96iSTVmNS1POfjDof26JSlqrzT/LBJt3LvGch/wC7xjH0rzbwVq9z\nHcT2LzGPVos2oMmCuP8A9QPX0r6PvbSHU7KWzuQTHLwxB5B65HpjArw74k+F\nJbHVW1C0xFerCCyrH8lwgbBOeu/gcfrXnyja8ZHbTmP1GX7TBF9nmihCyFgJ\nIg7E455/u/40yyjNxplpY25Aju5GaaWRNpIUdielc7aatczX9zdX6NGsDL5i\nxR4IJGAAD/k5rp7WaR0sY3k3wQkIS+ACS2So78KQa5ZLl0OpO5Xjj+xXObf7\nMIZYjGGdiSyDv9c8VS1CF/Jkjh3Ix27txDbT7Y9utdDqb2zx3NrJEoli4QJy\no9M9jxz6Vzs5tpGgIhmlVydwZtpkxySw9B2pQfczk7EVvcPGRb29wokB3SPL\nldxxjHNQRNIZ5VkIE5OXGT1PUE1YhitTM9zhZSXUp5i538E7fbkCr6iaQT3U\nsW+IJtnAAO0/3cfXHNaJjjsYNzJF9tZS8f2V9qKHBXbg5OT0xUoM0DJFPPAf\nMzuaHLlj25HtVhoEW4JmRZDvRWjK8BeuCenHBwKpwBoruQ2X7yDcRIojOzO4\nZI9ODTbEtBviONG0/wCygSrMSJgXUEAng/TgDiotJsIpcNZfuYmG11/unAyw\n/GrGvGOLVN3nvuC5RWBbAzxx6e/bFFvcQJPDbIVYr88isOGJORyKavyhZXIb\n6NvtZj4SGXCFgvBKjpuPOTSRYjmhjkEypM2PlIyGx2/D1xV64P2iLash2oDJ\n5pUnPPIx64pbeOMHz42BdDiPcTtU5yc8dahvSxUUdD4FRpfFekIPMXbdgjfx\nwBn865f493JuPG+uyqhEcnk2Kv0yyMC35V6L8NYI7e7vNe1DzY9O0mF5pHkX\n70hHOM9cCvDLi6n8V+Nrh8l/Nu3uXz6sflBHrtr0MJB8t2cNea59D2X4ZWxh\n0mEEdQK9StOI8e1cn4SsBa2aKMccDFddCvHrXZEwb0Jhgn6CjjBzjp60Ae3a\njHynp92mjMD0PTqKCOSOM0dmFGf93rQN6ijnNCDmhRSg8GmhC0UCk7UwHJTT\n1NOXvTe5pCCl7H2pKBkChMAqSowM1KooQCYoAGaU9aB+FAXBe9KOnNA70i9K\nAAcit7QP+PRv98/0rCHSt3QP+PRv981pS+ImWxpUUUV1GYvauc1f/j/k+g/l\nXR9q5zV/+P8Ak+g/lWVXYqO5RHFKOtFLnJrmNBPWgdKB0oFABR60UdjQAfw0\ndRijtRQAnQYPX1oxmlPWgd6AAnj8aM5oP9aTOBigB2aic8YpxPFNYUANUetP\nVeDSinCmO5E4wetANPYZ7U0gZxgUXC4jE44poHHvTm7/AI0xj0walrqNMUZz\nmmyHCFup7U4ZUcd6YxzkUkil3LVsehxzU2q2dlc2RS+iSVApbDjkcHoait8Z\nBHbg0avhrO4UHP8Aosn8q5a6urFRbufKPitJL7xJp6acjid8u5Un94gOFUju\nfeuptjNZWVwghdWRWghMqbecd89vesfQdNiv9Sv9d1K6kttFsBHbtMjAPLIR\ngIp7dCSf510Hju20C58PSTeHtTlZ7UKblZJmfhujkEfe9DwK46iulE74Ttcd\nqJSUQJD5svlpGoRCMA7clSe+feotWgW0nhcRRqwGWdydqv8A3COrY9qj8IlZ\nJITdgy+eAFiQcgrxk+p749K73S/Bx1q+uDd3EwhtAFkkwBmT+mBXO01KyKlJ\nJXZ5u9xDLZugjli3gpwAvIPZj2z2AzW2lnqDaWz2cMrRw4IUxlCmRg5BGWPf\n8K6PU9Q8LeD5JLC4uI2nj+Y7UDMueu5myCT6ACqcPxRglEq6JZzeUV/dFoyS\nD2LEmqUZ9ifarZHF31ncWl6y6mxIyrwsTjceBzjp1qWIyx2F7DBGhjVWy2/c\nMZBIB4wcgevSuj1DxUL+3vo9V0W0fzo8ExoUkP8Au57jrn6VzNjaW2+GfTbo\nG3mG7Y/PIOMsvTd04/HvRr1KTuTOUledpVjkzCrYJ2ydMYz2GfzrI0+2hYus\nVsrosJDqTjIHJwfx/StW+tvK029u55fmaXaFA+6SQM8jJ69PatHxB4MfS9Wv\nbMa5pVvafZo5UF65VwMcngf3v0qoq4NpbmVYx5u4I4mPk+YDu2naCOMn29q3\nPDvhPVfEV3Jb2IWGFZSbi9Yb41XsqjufSqNnptq3ibwbBaas+orqbk3EkI2w\nhgTkJ3AHTmt347+M7jwXpQ8N+GW+wKkPJTl3B/p6nqTW1KhzS1MKtdpWRj/G\n/wAZ2tnodv4M8N3H2hQQt3kHe7DkZPpkZNVPhP4Pezg+13I3XEzbjx3PWuW+\nFPht9XnOpaizT3Eh3F3Of519GaTZLBCiKg49OPxr0kuVciOW+lyzZWyxxKNg\nHHH0rRXhSBUUceMYBxgVKBxnFVFGb1FGM9aOo6jp6Udz1oBwR3GKY9hc8Hn0\npAoPOBSYPT3p460IlMB1JFLRRVCuJ2paO1JSAKDRRQAAZpelJS0gJFpc8n0o\nXpQOvpTATvyaOuaXtj9KB0/l7UAAPX8s0gxj3pR1JPNJ1z70AAPGO9b2gf8A\nHo/++awe3tW/oBzaP/vn+la0viJlsaRooorpMwrnNX/4/wCT6D+VdH2rnNX/\nAOP+T6D+VZVdio7lIdaO5ooH3q5jQShaPWhaAFo7UUUAJ2pR0oHSk7CgBwpK\nU01qABuv40E0h5phPBoAc3SkXvSlsihe9MBy9TSjqaAMdxSfxUgA0x/vYp7d\nKjY80AJjrSMAfwpwoA5PT8aPIaQ1l5+U8UwdRmnjhuvWhhgfSjoXEltj83XH\nP6VNqaM+nX/lgGQ27KmfUg8VVt2+cNitFXUghgQroQR7YrkrbXKjufMXh+bT\no/BjaJqsEi/aNUEryoBtIQ8gn68Vr6rc+ZY+JotHsGm1PVD9hlRV2QWtsvCu\nPUnnB9ateFdHso7jxBdavatdWmlRTSiBjjfyWAx34xzTdA8Q6x43ma1jWz02\n4khwVt0LeWoGVJA6DmuNSl8SO3R6Gt4C0a2u7rRpk+0xbWyhdQzO3c8Y246Z\n7iu++KviaDwf4bW0sox9svA0UQHRRglpG+gyfc1ynwM1YXMsEbB2Z9x3PgYw\nMHbxyM/lWB+0jNLNr91Gud1rpLtGB3DN8x/CtaME1dmNb3qiieTeGbC78aa/\nJc3cshs1kLKrHJc5+8x7n617/wCG/DFnaxLGkCAqOpHNcB8D7GNdHhIC5bHU\nete66bCfMrpnrsZwauU5vC9nd2wEsPzYO1gPmX3/AM+teCS2r+C/iRLpV8fO\nsrtGktl2gZznB/MEV9U28eEAJx9K+eP2j5Io/F3hN4Qgu0jkkYBcgIHH/wBf\n8awlSV35mkKnvWKP2tr2LyDHKftL7pt+Mxlf4Onbgg+9bfjO/wDD/hptUtbm\nee51bUtOjCvKgkIJUDJPVR04qn4Hgl1rWtPtI4WDJI7TtnI2E7vmI/ixjjsM\nVB8TL211nxDqrJNaSRW7rFHBGixvxgEl8ZZiQRg8AYrlgl1N56zsil4SudJl\n8S+AotHhu/tEV86PPLMD5qcliFGAAGJ7Csr9pG4W48ea4oUM0NpFHu7r34rq\n/h9o8LfE+1t5LOKHUI8XkgjYYQYBxkcd+grzf4v3cV78Q/Ea2+JI5LtIzJnu\npyR+Fd9DXU5qy975HpPwgt/L0WA+q56V65bRggHOPlrz34b2vkaZCPVR0r0a\nBdu33re92c5MmeAe1LnPrSqNwJzSBcE81pYlATtz1ppG4d6ecUBRwaLBcQDm\nlpV60lAgoopy96AAfepDQOKSgAopaTuaLAOIwKbmlFNA4ouVFEq9KcOtMGc8\nU4CgTVhfoaQdaB1z+vrQvWgQdsGl7Gigd6AAdK3fD/8Ax6P/AL5rCXpW74f/\nAOPRv98/0rSl8RMtjSJooorqMxe1c5q//H/J9B/KujrnNY/4/wCT6D+VZVdi\no7lEHJpaBRXMaBRRRQAHoaB0NFA6UAA6UnalBGKTI/DFACjpSHpRkFaBzj0N\nADT0plPOdp470KAQSfyFAAF5xTl6UAClHFACHrSjvRik78UAB6HpTD1p56ED\nNMPWmgQ1qT1+lLRSRogIwQRSEZ3CndhQvU+9TIQ1Rg9OKtgiSF14PGMetUic\nSHHY0+JztYAA8jpWU4c0bBF6nlXiK6Oi+LXuJ4WuLXVLYRXS4xhRlNo98Afr\nWR4dv9Yu5LzwtoNraafFGHV9TRdjm3B4Zn9cV3/xJ0mfU7W2iRo1sGlJnkC/\nOjj7jZ9M8GvPZWum+HniPTI7d7PVYTElwqD948e/LkdyMdq85R5ZWZ3t3jc2\nbfUdL8MxWsGk6nHNb2Tq46Dcy/eTP+0ckflUXxFkj8RXVvrlgGuo5LZozbbd\np8rB3gn19BWFFpVhoXgDVL67e0uJtQhWKzhVg5yeRIx7MM8DqMeta2lWUOj+\nF9Jv7+9AkukaTyZQcF16EEc575qG5RWhcbSd2c58ObxdDvmsZH/0dm3Qyg/K\nVPQfUdK990i5WdU2v1GPmIG33NeF6h/Yf2w3jTQKrxZlEZyGlHJYDoCeg+vN\nI/jnSdIsmMMt6ZdgCReYdo+h6Z/lW8K8mZSpLU+h77V4LWAqkkZl255YYXj7\nzeijqa+VvF+uDxv8SLi7SNo9H01BAkik/OoYnJ/3mJ49AKRtR8U/EiddH0W1\nktdPn4lLbgHwf45G5YDg7a9D8MaH4W8KPY6fJrFpfzRSrJcFj/rLjooJHGFI\n4zW058sXzbkQgkzb8I6ddaB4fuL+4drW7vo2NtbxrvdVxnLg8n19hXipEk0k\ndzcNH9qVw3JIWX2Y/wB31Psa9X8SeMpdK1HUrQS2t5cXzeTHOu51gJXB5Hbk\ncfjXGWTeIPGmpweCE+zmxilj+13UJDqkSAEbT6DOPrXPSg29DW/Krs6v4ZJN\noWj+LPG+pJG88paO1Ea7VdumEHpnj8K8U8PWE+q+LzDKwlaGZnlkU5VnOec9\n69S+M/jKDTdNt/DHh8COw08iJCDlriUZHH+yD1Pc1F8HfCbWdgs9wMTyHc3H\nBr0Ka5Ucbbk2z1DwxZmG0VcjgY6V00X3QOpFVLGEInocVbX3q0rMzY6MkrTx\n1NNH3fwqTHFWhDaXsKaOlOPShCDuKSlpDRYAFHelXrSdzQAtJ3paKdhiZpe5\npKKVxCr3oxSp3pygZ5oQ0wHA4o/ipfXHWjuf60C6h3/Wl7mk+vP1oHU9KAAc\nigdKAcen9KOg6f4/hQAq9K3dA/49H/3z/SsEVvaB/wAejf75rWl8RMtjTopC\naK6TMXtXOax/x/yfQfyro65zV/8AkISfRf5VlV2KjuUQeaXuaQdTRnmuY0Fo\noxRQAUUUUAN59KTHWnA8mlBoAjUNTwOOe1LRQAUAYNGcEUUAFFGeTRQAA0Y6\n0gHNKOaADHamFfmzTx1pCOaAGHtimjvTn603saBpsUc0A4ooPFKw2MbqcUij\naMA8nn6U880wdT+VJ6C9BJkiuLSWC6QSJKux0/vA9fxryzx7oN1YX2m3toT5\ntt+6juMgJIhJxFIexxxnvXqeOMH8v60k8SXELwyxiSJ1w6sMhx7+9c1Wjz6o\n6KVW2549Y2GheKNXjmtduk6ikeLyKWHYEkHcKP4ieg9KqX/meIvGytafZv7G\n0hI4LaWeULHHCMeZI2fX/AV1Ot+AJ7fUV1Pwxcnz1bJt2cg9OAjf0PFcRJJp\nLSNb+I9Amj1GMsWjuB5ccq+m7OOvQDOa5XFw3OmNpapnS+Db+W91fxK+hW8V\nvbahJI1gzRqVyinadp/vHpirFtpF3daZ4Gnl+xA3F7/pkbWi7pWAJyx7dCPx\nFVPCt1NG1lPaabcxQwOHZAhYmMHjbjoAM8fSruo6drup6drKWUbQvdgHThsY\ni2j3ZbcMZDsazjJX0G4NbMjt9V1K58PeNpI9TluRJ562DkBVjRcBtuOhOSB/\numqXhm3tdV8KX+qah9ittIisTEgIEYglAGBg9STzn3q3/wAIV4lgj0+y03S4\nY7GzQ+Zc3EwTz2b7zOBzj2rn7vwv4S01lfxX4nF+Q+f7P0ly6lvfHPtWsYOb\n1M3OMVpuYfhK31zxIwt/DkQa9vYjFc3UtuPLto8Dkns3H1rq9e1nS/hf4KuN\nE8M3JudVn/4+9QHLSu3BCfT8h9c1FeeNNUvLM6N4F0RNC0t8h5GT99IvTPHA\nPvnPNR+HPh8ZrsX2ryyXVyMYZznAHQV1Qio6IxcnPVnG/D3wVd6vqC6jqocj\nrGsnO0Dr9PevoTSNPWzgCIo6AD0p2k6ZFZwbI1wQAenQ+tasSlRngZPTFbpX\n1IvYFT5TxTx0p0fAbNPIG3irM2JjA4oFHalFBLA/dFK3SmgcUNyKAAcGig9a\nKQC0o5zTaKdwFHNJQODRSAKXuaSnqOKYAvenbRk0uOKBQAUD8KKBwaAEHoaA\naKUZoAKMUUZ60AHNbugf8ej/AO+awjz71u6B/wAej/75rWl8RMtjSooorpMx\na5zV/wDkISfRf5V0dc5q/wDyEJPov8qyq7FR3KVIep9qWk7HNcxoKDmikHSl\noAKO1FB6UAIOAaKB0ooAXtRRRQAjc4pe2M0Ud6AA8k0UZ60UAFA4JpBQPvGg\nBR3pB+NKOMntQfxoAa471GOp96mzk4wce9Nx6UwGDg59qMZ6U7pnNJ16DFIA\nC+9RHqetThT70bRjuMUAQP0OMkkVGd/TP41bY8DijA5x19KVrbD6FNGK8kkr\ng8GodQsrW/gMd7DHNGecMgI+vPetL2x0FIMAkgc9qTgpLUqDscJceBNPjlaf\nT2uraUfxW8pXHPIx6e1VrnwlqEzHy9f1hQBsBjnwSc9ScV6LjBz0x196CM9R\n2rH6vEv2kjyab4dPO3+l6lqcwz8wlumO72OOxrR0v4f6dYELBBGM8cJwfqa9\nHPY4IPrikYe341cKaQ1K5z1lokEEZWOIYB/u81pQQCJSNoz64rRGOQQfoaON\npxWqikzNz1K0ajJwTTjjdj0qUDHPanNgk4ApsTIQnB7jinY6+pNL0oHIpCTE\nxg0qnGaM5pQODQkICTim0vYUlDAWk704DDU2hgHanA4zTe1OAyTQgG0p6ZoB\nxQKEA5O9O+gye1A6ZwaKAFGOtFJ60dx6UAKeTR3pMZbil6scc0AJ/FS0nfNA\nznv/AI/SgB1IO9LTR0P1oAAPlre0D/j0f/fNYQ6VvaD/AMejf75rSl8RMtjQ\nopaK6jMWuc1f/kISfRf5V0dc5q//ACEJPov8qyq7FR3KVHejsaB3rmNAopP4\naUdKACj1ope1ADR3paRPuiloAKQ9aWigBfwpCKCelB60AIOP89KWlpKACkxn\nrS0dzQAfjmgUDvQOhoAD04pF4FL17UdqAFpO3Wj+GigA60vXPvSUdsUAHemj\np/SnUUAJ/hij1paKAG9+nWlzycdqXFIB1oBAD3zx6+lHHNIOMn06+1KvT+lA\nbBwMenpmkHNOo6UAIRwSOvr60HlTx17UdqXPOM9vzoC43PGQKZTwcg4OaQHI\nNMBuMUZ60E8cAUgJNLcYueKSl6UgoELSdqXvSZoYCr+lKeppqg84pycHkUIB\nRg06lzzQelAB/n60H6+9B6f1pMc4GOmf/r0AHBNL6mk6jPanfpQAh4+lJz0P\nNL3oxzQACk/rS9/1oXr06/rQAnb5fype1HagHg0AFb2gf8ej/wC+awRyK3fD\n/wDx6P8A75/pWtL4iZbGnRRRXSZn/9k=\n"], ["avatar_content_type", "image/png"], ["created_at", Thu, 10 Sep 2015 12:45:08 UTC +00:00], ["email", "baba@man.man"], ["encrypted_password", "$2a$10$tMn5Y4hChS2mcVB8gpxV7.9sTBZ2FlLKGo0HX1kfaN9DsQo8XWjTG"], ["nickname", "babaman"], ["updated_at", Thu, 10 Sep 2015 12:45:08 UTC +00:00]]
[1m[36m (1.8ms)[0m [1mcommit transaction[0m
[1m[35m (0.1ms)[0m begin transaction
Binary data inserted for `string` type on column `last_sign_in_ip` Binary data inserted for `string` type on column `current_sign_in_ip`
[1m[36mSQL (0.7ms)[0m [1mUPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 55[0m [["last_sign_in_at", Thu, 10 Sep 2015 12:45:08 UTC +00:00], ["current_sign_in_at", Thu, 10 Sep 2015 12:45:08 UTC +00:00], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", Thu, 10 Sep 2015 12:45:08 UTC +00:00]] [1m[35m (0.9ms)[0m commit transaction
Redirected to localhost:3000/ Completed 302 Found in 94ms (ActiveRecord: 4.6ms)
Started GET “/” for 127.0.0.1 at 2015-09-10 14:45:09 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (3.3ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.7ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (2.4ms) [1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (3.7ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___536453388460758653_70134169285040 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (19.2ms) Rendered welcome/index.html.erb within layouts/application (32.0ms) [1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.0ms) Rendered shared/_splash.html.erb (0.0ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 51ms (Views: 47.2ms | ActiveRecord: 2.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:09 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:09 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:09 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:09 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:09 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:09 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:09 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:09 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:09 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:09 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:09 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:09 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:09 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:09 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:09 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:09 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:09 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:09 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:09 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:09 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:09 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:09 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:09 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:09 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:09 +0200
Started GET “/users/55” for 127.0.0.1 at 2015-09-10 14:45:11 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"55"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "55"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 55]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 55]]
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (4.0ms)
Rendered shared/_header.html.erb (7.2ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 30ms (Views: 27.4ms | ActiveRecord: 0.6ms)
Started GET “/users/55” for 127.0.0.1 at 2015-09-10 14:45:28 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"55"}
[1m[36mUser Load (0.8ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "55"]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 55]]
[1m[36mGameCode Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 55]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (9.6ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 101ms (Views: 19.3ms | ActiveRecord: 1.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:28 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:28 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:28 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:28 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:28 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:28 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:28 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:28 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:28 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:28 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:28 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:28 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:28 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:28 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:28 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:28 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:28 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:28 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:28 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:28 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:28 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:28 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:28 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:28 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:28 +0200
Started GET “/users/55” for 127.0.0.1 at 2015-09-10 14:45:56 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"55"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "55"]]
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 55]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 55]]
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (4.3ms)
Rendered shared/_header.html.erb (2.4ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 72ms (Views: 69.5ms | ActiveRecord: 0.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:56 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:56 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:56 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:56 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:56 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:56 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:56 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:56 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:56 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:56 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:56 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:56 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:56 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:56 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:45:56 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:56 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:56 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:56 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:56 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:56 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:56 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:56 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:56 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:56 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:45:56 +0200
Started GET “/users/55” for 127.0.0.1 at 2015-09-10 14:46:00 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"55"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "55"]]
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 55]]
[1m[36mGameCode Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1[0m [["user_id", 55]]
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
Rendered users/show.html.erb within layouts/application (6.3ms)
Rendered shared/_header.html.erb (1.5ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 23ms (Views: 17.6ms | ActiveRecord: 0.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:00 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:00 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:00 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:00 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:00 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:00 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:00 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:00 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:00 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:00 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:00 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:00 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:00 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:00 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:00 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:00 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:00 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:00 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:00 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:00 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:00 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:00 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:00 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:00 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:00 +0200
Started GET “/users/55” for 127.0.0.1 at 2015-09-10 14:46:09 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"55"}
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "55"]]
Rendered users/show.html.erb within layouts/application (0.7ms)
Completed 500 Internal Server Error in 4ms
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/views/users/show.html.erb:5: syntax error, unexpected tIVAR, expecting ')' …base64' + Base64.decode64 @user.avatar );@output_buffer.safe… … ^):
actionpack (4.0.8) lib/action_view/template.rb:299:in `module_eval' actionpack (4.0.8) lib/action_view/template.rb:299:in `compile' actionpack (4.0.8) lib/action_view/template.rb:248:in `block in compile!' actionpack (4.0.8) lib/action_view/template.rb:236:in `synchronize' actionpack (4.0.8) lib/action_view/template.rb:236:in `compile!' actionpack (4.0.8) lib/action_view/template.rb:142:in `block in render' activesupport (4.0.8) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.8) lib/action_view/template.rb:141:in `render' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.8) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.8) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.8) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.8) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.8) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.8) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.8) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.8) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.8) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.8) lib/active_support/callbacks.rb:423:in `_run__39567764292138642__process_action__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.8) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.8) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.8) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.8) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.8) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.8) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.8) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.8) lib/action_dispatch/routing/route_set.rb:676:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.8) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.8) lib/active_record/migration.rb:373:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.8) lib/active_support/callbacks.rb:373:in `_run__4191911351967724401__call__callbacks' activesupport (4.0.8) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.2ms)
Started GET “/users/55” for 127.0.0.1 at 2015-09-10 14:46:17 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"55"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "55"]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 55]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 55]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (6.2ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 19ms (Views: 16.4ms | ActiveRecord: 0.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:17 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:17 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:17 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:17 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:17 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:17 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:17 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:17 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:17 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:17 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:17 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:17 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:17 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:17 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:17 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:17 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:17 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:17 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:17 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:17 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:17 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:17 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:17 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:17 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:17 +0200
Started GET “/users/55” for 127.0.0.1 at 2015-09-10 14:46:48 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"55"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "55"]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 55]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 55]]
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (6.2ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 76ms (Views: 73.5ms | ActiveRecord: 0.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:48 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:48 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:48 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:48 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:48 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:48 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:48 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:48 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:48 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:48 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:48 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:48 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:48 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:48 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:46:48 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:48 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:48 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:48 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:48 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:48 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:48 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:48 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:48 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:48 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:46:48 +0200
Started GET “/users/55” for 127.0.0.1 at 2015-09-10 14:47:40 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"55"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "55"]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 55]]
[1m[35mGameCode Exists (0.2ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 55]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (5.4ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 18ms (Views: 15.2ms | ActiveRecord: 0.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:40 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:40 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:40 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:40 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:40 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:40 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:40 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:40 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:40 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:40 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:40 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:40 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:40 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:40 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:40 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:47:40 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:47:40 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:47:40 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:47:40 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:47:40 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:47:40 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:47:40 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:47:40 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:47:40 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:47:40 +0200
Started GET “/users/55” for 127.0.0.1 at 2015-09-10 14:47:52 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"55"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "55"]]
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 55]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 55]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (6.1ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 23ms (Views: 17.8ms | ActiveRecord: 0.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:52 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:52 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:52 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:52 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:52 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:52 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:52 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:52 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:52 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:52 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:52 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:52 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:52 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:52 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:47:52 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:47:52 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:47:52 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:47:52 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:47:52 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:47:52 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:47:52 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:47:52 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:47:52 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:47:52 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:47:52 +0200
Started GET “/users/55” for 127.0.0.1 at 2015-09-10 14:48:14 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"55"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "55"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 55]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 55]]
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (4.0ms)
Rendered shared/_header.html.erb (1.9ms)
Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 135ms (Views: 133.0ms | ActiveRecord: 0.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:14 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:14 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:14 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:14 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:14 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:14 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:14 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:14 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:14 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:14 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:14 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:14 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:14 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:14 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:14 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:48:14 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:48:14 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:48:14 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:48:14 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:48:14 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:48:14 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:48:14 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:48:14 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:48:14 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:48:14 +0200
Started GET “/users/55” for 127.0.0.1 at 2015-09-10 14:48:19 +0200 Processing by UsersController#show as HTML
Parameters: {"id"=>"55"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "55"]]
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 55]]
[1m[35mGameCode Exists (0.1ms)[0m SELECT 1 AS one FROM "game_codes" WHERE "game_codes"."user_id" = ? LIMIT 1 [["user_id", 55]]
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
Rendered users/show.html.erb within layouts/application (4.5ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 114ms (Views: 111.1ms | ActiveRecord: 0.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:19 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:19 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:19 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:19 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:19 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:19 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:19 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:19 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:19 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:19 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:19 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:19 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:19 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:48:19 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:19 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:48:19 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:48:19 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:48:19 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:48:19 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:48:19 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:48:19 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:48:19 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:48:19 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:48:19 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:48:19 +0200
Started GET “/users” for 127.0.0.1 at 2015-09-10 14:48:27 +0200 Processing by UsersController#index as HTML
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" Rendered users/index.html.erb within layouts/application (9.0ms) Rendered shared/_header.html.erb (1.2ms) Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 77ms (Views: 65.3ms | ActiveRecord: 1.0ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:48:32 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 50
Rendered users/index.html.erb within layouts/application (13.3ms)
Rendered shared/_header.html.erb (1.8ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 29ms (Views: 26.2ms | ActiveRecord: 0.5ms)
Started GET “/images/SXp4QlkzUnBiMjVFYVhOd1lYUmphRG82U0hSMGNEbzZWWEJzYjJGa1pXUkdhV3hsT2pCNE1EQTNaamt5Cll6ZG1ZemsxTkRnKwo=” for 127.0.0.1 at 2015-09-10 14:48:32 +0200
ActionController::RoutingError (No route matches [GET] “/images/SXp4QlkzUnBiMjVFYVhOd1lYUmphRG82U0hSMGNEbzZWWEJzYjJGa1pXUkdhV3hsT2pCNE1EQTNaamt5Cll6ZG1ZemsxTkRnKwo=”):
actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (44.7ms)
Started GET “/users?page=2” for 127.0.0.1 at 2015-09-10 14:48:35 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"2"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 25
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
Rendered users/index.html.erb within layouts/application (6.8ms)
Rendered shared/_header.html.erb (1.3ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 19ms (Views: 17.1ms | ActiveRecord: 0.6ms)
Started GET “/users?page=1” for 127.0.0.1 at 2015-09-10 14:48:37 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"1"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
Rendered users/index.html.erb within layouts/application (110.0ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 124ms (Views: 121.8ms | ActiveRecord: 0.6ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:48:39 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 50
Rendered users/index.html.erb within layouts/application (16.4ms)
Rendered shared/_header.html.erb (4.6ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 40ms (Views: 35.9ms | ActiveRecord: 0.6ms)
Started GET “/images/SXp4QlkzUnBiMjVFYVhOd1lYUmphRG82U0hSMGNEbzZWWEJzYjJGa1pXUkdhV3hsT2pCNE1EQTNaamt5Cll6ZG1ZemsxTkRnKwo=” for 127.0.0.1 at 2015-09-10 14:48:39 +0200
ActionController::RoutingError (No route matches [GET] “/images/SXp4QlkzUnBiMjVFYVhOd1lYUmphRG82U0hSMGNEbzZWWEJzYjJGa1pXUkdhV3hsT2pCNE1EQTNaamt5Cll6ZG1ZemsxTkRnKwo=”):
actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (53.4ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:50:03 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 50
Rendered users/index.html.erb within layouts/application (15.6ms)
Rendered shared/_header.html.erb (2.2ms)
Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 48ms (Views: 27.7ms | ActiveRecord: 0.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:50:03 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:50:03 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:50:03 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:50:03 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:50:03 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:50:03 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:50:03 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:50:03 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:50:03 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:50:03 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:50:03 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:50:03 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:50:03 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:50:03 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:50:03 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:50:03 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:50:03 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:50:03 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:50:03 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:50:03 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:50:03 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:50:03 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:50:03 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:50:03 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:50:03 +0200
Started GET “/images/SXp4QlkzUnBiMjVFYVhOd1lYUmphRG82U0hSMGNEbzZWWEJzYjJGa1pXUkdhV3hsT2pCNE1EQTNaamt5Cll6ZG1ZemsxTkRnKwo=” for 127.0.0.1 at 2015-09-10 14:50:03 +0200
ActionController::RoutingError (No route matches [GET] “/images/SXp4QlkzUnBiMjVFYVhOd1lYUmphRG82U0hSMGNEbzZWWEJzYjJGa1pXUkdhV3hsT2pCNE1EQTNaamt5Cll6ZG1ZemsxTkRnKwo=”):
actionpack (4.0.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.8) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.8) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.8) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.8) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.8) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.8) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.8) lib/rails/engine.rb:511:in `call' railties (4.0.8) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process' thin (1.6.3) lib/thin/connection.rb:84:in `catch' thin (1.6.3) lib/thin/connection.rb:84:in `pre_process' thin (1.6.3) lib/thin/connection.rb:53:in `process' thin (1.6.3) lib/thin/connection.rb:39:in `receive_data' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run_machine' eventmachine (1.0.7) lib/eventmachine.rb:187:in `run' thin (1.6.3) lib/thin/backends/base.rb:73:in `start' thin (1.6.3) lib/thin/server.rb:162:in `start' rack (1.5.2) lib/rack/handler/thin.rb:16:in `run' rack (1.5.2) lib/rack/server.rb:264:in `start' railties (4.0.8) lib/rails/commands/server.rb:84:in `start' railties (4.0.8) lib/rails/commands.rb:76:in `block in <top (required)>' railties (4.0.8) lib/rails/commands.rb:71:in `tap' railties (4.0.8) lib/rails/commands.rb:71:in `<top (required)>' bin/rails:4:in `require' bin/rails:4:in `<main>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (63.0ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:50:18 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 50
Rendered users/index.html.erb within layouts/application (87.6ms)
Completed 500 Internal Server Error in 91ms
ActionView::Template::Error (undefined method `show_avatar' for #<#<Class:0x007f92c7ad8fe8>:0x007f92c7e20ae8>):
14: <li> 15: <div class="pure-g"> 16: <div class="pure-u-1-3"> 17: <%= show_avatar(@user) %> 18: </div> 19: <div class="pure-u-2-3"> 20: <%= link_to user.nickname, user %> app/views/users/index.html.erb:17:in `block in _app_views_users_index_html_erb___4113026242361065237_70134197737420' app/views/users/index.html.erb:13:in `_app_views_users_index_html_erb___4113026242361065237_70134197737420' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.0ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:50:31 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (1.3ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 50
Rendered users/index.html.erb within layouts/application (100.5ms)
Completed 500 Internal Server Error in 137ms
ActionView::Template::Error (undefined method `show_avatar' for #<#<Class:0x007f92c82330e0>:0x007f92c8232230>):
14: <li> 15: <div class="pure-g"> 16: <div class="pure-u-1-3"> 17: <%= show_avatar(@user) %> 18: </div> 19: <div class="pure-u-2-3"> 20: <%= link_to user.nickname, user %> app/views/users/index.html.erb:17:in `block in _app_views_users_index_html_erb___4113026242361065237_70134197737420' app/views/users/index.html.erb:13:in `_app_views_users_index_html_erb___4113026242361065237_70134197737420' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.3ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:50:40 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 50
Rendered users/index.html.erb within layouts/application (2.7ms)
Completed 500 Internal Server Error in 6ms
ActionView::Template::Error (undefined method `avatar_content_type' for nil:NilClass):
14: <li> 15: <div class="pure-g"> 16: <div class="pure-u-1-3"> 17: <%= render_avatar(@user) %> 18: </div> 19: <div class="pure-u-2-3"> 20: <%= link_to user.nickname, user %> app/helpers/users_helper.rb:4:in `render_avatar' app/views/users/index.html.erb:17:in `block in _app_views_users_index_html_erb___4113026242361065237_70134197207720' app/views/users/index.html.erb:13:in `_app_views_users_index_html_erb___4113026242361065237_70134197207720' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.9ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:50:48 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 50
Rendered users/index.html.erb within layouts/application (2.4ms)
Completed 500 Internal Server Error in 7ms
ActionView::Template::Error (no implicit conversion of nil into String):
14: <li> 15: <div class="pure-g"> 16: <div class="pure-u-1-3"> 17: <%= render_avatar(user) %> 18: </div> 19: <div class="pure-u-2-3"> 20: <%= link_to user.nickname, user %> app/helpers/users_helper.rb:4:in `+' app/helpers/users_helper.rb:4:in `render_avatar' app/views/users/index.html.erb:17:in `block in _app_views_users_index_html_erb___4113026242361065237_70134198721920' app/views/users/index.html.erb:13:in `_app_views_users_index_html_erb___4113026242361065237_70134198721920' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (52.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (60.1ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:51:47 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 50
Rendered users/index.html.erb within layouts/application (3.6ms)
Completed 500 Internal Server Error in 27ms
ActionView::Template::Error (undefined method `responds_to?' for #<User:0x007f92c8109ae8>):
14: <li> 15: <div class="pure-g"> 16: <div class="pure-u-1-3"> 17: <%= render_avatar(user) %> 18: </div> 19: <div class="pure-u-2-3"> 20: <%= link_to user.nickname, user %> app/helpers/users_helper.rb:4:in `render_avatar' app/views/users/index.html.erb:17:in `block in _app_views_users_index_html_erb___4113026242361065237_70134199197320' app/views/users/index.html.erb:13:in `_app_views_users_index_html_erb___4113026242361065237_70134199197320' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.8ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:51:48 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 50
Rendered users/index.html.erb within layouts/application (2.2ms)
Completed 500 Internal Server Error in 6ms
ActionView::Template::Error (undefined method `responds_to?' for #<User:0x007f92c518bb68>):
14: <li> 15: <div class="pure-g"> 16: <div class="pure-u-1-3"> 17: <%= render_avatar(user) %> 18: </div> 19: <div class="pure-u-2-3"> 20: <%= link_to user.nickname, user %> app/helpers/users_helper.rb:4:in `render_avatar' app/views/users/index.html.erb:17:in `block in _app_views_users_index_html_erb___4113026242361065237_70134199197320' app/views/users/index.html.erb:13:in `_app_views_users_index_html_erb___4113026242361065237_70134199197320' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (17.7ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:51:51 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 50
Rendered users/index.html.erb within layouts/application (1.8ms)
Completed 500 Internal Server Error in 20ms
ActionView::Template::Error (no implicit conversion of nil into String):
14: <li> 15: <div class="pure-g"> 16: <div class="pure-u-1-3"> 17: <%= render_avatar(user) %> 18: </div> 19: <div class="pure-u-2-3"> 20: <%= link_to user.nickname, user %> app/helpers/users_helper.rb:5:in `+' app/helpers/users_helper.rb:5:in `render_avatar' app/views/users/index.html.erb:17:in `block in _app_views_users_index_html_erb___4113026242361065237_70134199197320' app/views/users/index.html.erb:13:in `_app_views_users_index_html_erb___4113026242361065237_70134199197320' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.4ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:52:10 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (1.7ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 50
Rendered users/index.html.erb within layouts/application (7.1ms)
Completed 500 Internal Server Error in 82ms
ActionView::Template::Error (no implicit conversion of nil into String):
14: <li> 15: <div class="pure-g"> 16: <div class="pure-u-1-3"> 17: <%= render_avatar(user) %> 18: </div> 19: <div class="pure-u-2-3"> 20: <%= link_to user.nickname, user %> app/helpers/users_helper.rb:5:in `+' app/helpers/users_helper.rb:5:in `render_avatar' app/views/users/index.html.erb:17:in `block in _app_views_users_index_html_erb___4113026242361065237_70134199197320' app/views/users/index.html.erb:13:in `_app_views_users_index_html_erb___4113026242361065237_70134199197320' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.5ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:52:15 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 50
Rendered users/index.html.erb within layouts/application (2.3ms)
Completed 500 Internal Server Error in 23ms
ActionView::Template::Error (no implicit conversion of nil into String):
14: <li> 15: <div class="pure-g"> 16: <div class="pure-u-1-3"> 17: <%= render_avatar(user) %> 18: </div> 19: <div class="pure-u-2-3"> 20: <%= link_to user.nickname, user %> app/helpers/users_helper.rb:5:in `+' app/helpers/users_helper.rb:5:in `render_avatar' app/views/users/index.html.erb:17:in `block in _app_views_users_index_html_erb___4113026242361065237_70134199197320' app/views/users/index.html.erb:13:in `_app_views_users_index_html_erb___4113026242361065237_70134199197320' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.0ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:52:16 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 50
Rendered users/index.html.erb within layouts/application (2.7ms)
Completed 500 Internal Server Error in 8ms
ActionView::Template::Error (no implicit conversion of nil into String):
14: <li> 15: <div class="pure-g"> 16: <div class="pure-u-1-3"> 17: <%= render_avatar(user) %> 18: </div> 19: <div class="pure-u-2-3"> 20: <%= link_to user.nickname, user %> app/helpers/users_helper.rb:5:in `+' app/helpers/users_helper.rb:5:in `render_avatar' app/views/users/index.html.erb:17:in `block in _app_views_users_index_html_erb___4113026242361065237_70134199197320' app/views/users/index.html.erb:13:in `_app_views_users_index_html_erb___4113026242361065237_70134199197320' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (17.7ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:52:17 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 50
Rendered users/index.html.erb within layouts/application (3.2ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 37ms (Views: 13.4ms | ActiveRecord: 0.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:17 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:17 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:17 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:17 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:18 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:18 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:18 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:18 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:18 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:18 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:18 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:18 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:18 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:18 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:18 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:18 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:18 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:18 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:18 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:18 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:18 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:18 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:18 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:18 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:18 +0200
Started GET “/assets/fontawesome-webfont.woff2?v=4.3.0” for 127.0.0.1 at 2015-09-10 14:52:18 +0200
Started GET “/users?page=2” for 127.0.0.1 at 2015-09-10 14:52:20 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"2"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 25
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
Rendered users/index.html.erb within layouts/application (6.4ms)
Rendered shared/_header.html.erb (1.5ms)
Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 20ms (Views: 17.2ms | ActiveRecord: 0.6ms)
Started GET “/users?page=1” for 127.0.0.1 at 2015-09-10 14:52:21 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"1"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m
[1m[35m (0.6ms)[0m SELECT COUNT(*) FROM "users"
Rendered users/index.html.erb within layouts/application (10.8ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 24ms (Views: 21.2ms | ActiveRecord: 1.1ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:52:23 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 50
Rendered users/index.html.erb within layouts/application (2.9ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 77ms (Views: 74.7ms | ActiveRecord: 0.5ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:52:32 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[36mUser Load (1.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 50
Rendered users/index.html.erb within layouts/application (5.0ms)
Completed 500 Internal Server Error in 47ms
ActionView::Template::Error (no implicit conversion of nil into String):
14: <li> 15: <div class="pure-g"> 16: <div class="pure-u-1-3"> 17: <%= render_avatar(user) %> 18: </div> 19: <div class="pure-u-2-3"> 20: <%= link_to user.nickname, user %> app/helpers/users_helper.rb:5:in `+' app/helpers/users_helper.rb:5:in `render_avatar' app/views/users/index.html.erb:17:in `block in _app_views_users_index_html_erb___4113026242361065237_70134199197320' app/views/users/index.html.erb:13:in `_app_views_users_index_html_erb___4113026242361065237_70134199197320' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.7ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:52:39 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 50
Rendered users/index.html.erb within layouts/application (3.1ms)
Completed 500 Internal Server Error in 22ms
ActionView::Template::Error (no implicit conversion of nil into String):
14: <li> 15: <div class="pure-g"> 16: <div class="pure-u-1-3"> 17: <%= render_avatar(user) %> 18: </div> 19: <div class="pure-u-2-3"> 20: <%= link_to user.nickname, user %> app/helpers/users_helper.rb:5:in `+' app/helpers/users_helper.rb:5:in `render_avatar' app/views/users/index.html.erb:17:in `block in _app_views_users_index_html_erb___4113026242361065237_70134199197320' app/views/users/index.html.erb:13:in `_app_views_users_index_html_erb___4113026242361065237_70134199197320' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.8ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:52:43 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[36mUser Load (0.9ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 50
Rendered users/index.html.erb within layouts/application (3.7ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 103ms (Views: 14.3ms | ActiveRecord: 1.2ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:43 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:43 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:43 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:43 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:43 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:43 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:43 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:43 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:43 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:43 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:43 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:43 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:43 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:43 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:43 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:43 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:43 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:43 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:43 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:43 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:43 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:43 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:43 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:43 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:43 +0200
Started GET “/users?page=1” for 127.0.0.1 at 2015-09-10 14:52:45 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"1"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
Rendered users/index.html.erb within layouts/application (10.0ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 25ms (Views: 22.0ms | ActiveRecord: 0.7ms)
Started GET “/users?page=1” for 127.0.0.1 at 2015-09-10 14:52:56 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"1"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
Rendered users/index.html.erb within layouts/application (6.6ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 33ms (Views: 15.4ms | ActiveRecord: 0.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:56 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:56 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:56 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:56 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:56 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:56 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:56 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:56 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:56 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:56 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:56 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:56 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:56 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:56 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:52:56 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:56 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:56 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:56 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:56 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:56 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:56 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:56 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:56 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:56 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:52:56 +0200
Started GET “/users?page=1” for 127.0.0.1 at 2015-09-10 14:53:02 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"1"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
Rendered users/index.html.erb within layouts/application (8.7ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (1.1ms)
Completed 200 OK in 42ms (Views: 20.4ms | ActiveRecord: 0.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:02 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:02 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:02 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:02 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:02 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:02 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:02 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:02 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:02 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:02 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:02 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:02 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:02 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:02 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:02 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:02 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:02 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:02 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:02 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:02 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:02 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:02 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:02 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:02 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:02 +0200
Started GET “/users?page=1” for 127.0.0.1 at 2015-09-10 14:53:08 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"1"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users"
Rendered users/index.html.erb within layouts/application (13.1ms)
Rendered shared/_header.html.erb (1.8ms)
Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 58ms (Views: 28.4ms | ActiveRecord: 1.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:08 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:08 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:08 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:08 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:08 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:08 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:08 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:08 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:08 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:08 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:08 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:08 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:08 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:08 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:08 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:08 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:08 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:08 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:08 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:08 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:08 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:08 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:08 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:08 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:08 +0200
Started GET “/users?page=2” for 127.0.0.1 at 2015-09-10 14:53:11 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"2"}
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 25
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
Rendered users/index.html.erb within layouts/application (8.0ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 22ms (Views: 18.7ms | ActiveRecord: 1.0ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:53:12 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (2.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (13.6ms)
Rendered shared/_header.html.erb (5.2ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 45ms (Views: 40.0ms | ActiveRecord: 2.4ms)
Started GET “/users?page=1” for 127.0.0.1 at 2015-09-10 14:53:15 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"1"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
Rendered users/index.html.erb within layouts/application (5.7ms)
Rendered shared/_header.html.erb (1.4ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 64ms (Views: 61.5ms | ActiveRecord: 0.5ms)
Started GET “/users?page=1” for 127.0.0.1 at 2015-09-10 14:53:19 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"1"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (2.1ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
Rendered users/index.html.erb within layouts/application (14.3ms)
Rendered shared/_header.html.erb (3.0ms)
Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 58ms (Views: 39.0ms | ActiveRecord: 2.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:20 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:20 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:20 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:20 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:20 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:20 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:20 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:20 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:20 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:20 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:20 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:20 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:20 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:20 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:20 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:20 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:20 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:20 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:20 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:20 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:20 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:20 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:20 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:20 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:20 +0200
Started GET “/users?page=1” for 127.0.0.1 at 2015-09-10 14:53:22 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"1"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 0[0m
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users"
Rendered users/index.html.erb within layouts/application (6.4ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 18ms (Views: 16.1ms | ActiveRecord: 0.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:22 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:22 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:22 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:22 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:22 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:22 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:22 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:22 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:22 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:22 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:22 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:22 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:22 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:22 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:22 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:22 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:22 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:22 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:22 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:22 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:22 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:22 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:22 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:22 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:22 +0200
Started GET “/users?page=2” for 127.0.0.1 at 2015-09-10 14:53:24 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"2"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 25
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
Rendered users/index.html.erb within layouts/application (7.6ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 123ms (Views: 119.4ms | ActiveRecord: 0.6ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:53:25 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (2.3ms)
Completed 500 Internal Server Error in 7ms
ActionView::Template::Error (no implicit conversion of nil into String):
14: <li> 15: <div class="pure-g"> 16: <div class="pure-u-1-3"> 17: <%= render_avatar(user) %> 18: </div> 19: <div class="pure-u-2-3"> 20: <%= link_to user.nickname, user %> app/helpers/users_helper.rb:5:in `+' app/helpers/users_helper.rb:5:in `render_avatar' app/views/users/index.html.erb:17:in `block in _app_views_users_index_html_erb___4113026242361065237_70134199291300' app/views/users/index.html.erb:13:in `_app_views_users_index_html_erb___4113026242361065237_70134199291300' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.5ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:53:25 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (2.4ms)
Completed 500 Internal Server Error in 6ms
ActionView::Template::Error (no implicit conversion of nil into String):
14: <li> 15: <div class="pure-g"> 16: <div class="pure-u-1-3"> 17: <%= render_avatar(user) %> 18: </div> 19: <div class="pure-u-2-3"> 20: <%= link_to user.nickname, user %> app/helpers/users_helper.rb:5:in `+' app/helpers/users_helper.rb:5:in `render_avatar' app/views/users/index.html.erb:17:in `block in _app_views_users_index_html_erb___4113026242361065237_70134199197320' app/views/users/index.html.erb:13:in `_app_views_users_index_html_erb___4113026242361065237_70134199197320' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.5ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:53:42 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (3.5ms)
Rendered shared/_header.html.erb (2.0ms)
Rendered shared/_footer.html.erb (0.8ms)
Completed 200 OK in 117ms (Views: 93.0ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:42 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:42 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:42 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:42 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:42 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:42 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:42 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:42 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:42 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:42 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:42 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:42 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:42 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:42 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:53:42 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:42 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:42 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:42 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:42 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:42 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:42 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:42 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:42 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:42 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:53:42 +0200
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:53:50 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (4.9ms)
Completed 500 Internal Server Error in 99ms
ActionView::Template::Error (no implicit conversion of nil into String):
14: <li> 15: <div class="pure-g"> 16: <div class="pure-u-1-3"> 17: <%= render_avatar(user) %> 18: </div> 19: <div class="pure-u-2-3"> 20: <%= link_to user.nickname, user %> app/helpers/users_helper.rb:5:in `+' app/helpers/users_helper.rb:5:in `render_avatar' app/views/users/index.html.erb:17:in `block in _app_views_users_index_html_erb___4113026242361065237_70134199197320' app/views/users/index.html.erb:13:in `_app_views_users_index_html_erb___4113026242361065237_70134199197320' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.6ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:54:01 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (3.4ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 83ms (Views: 68.8ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:01 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:01 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:01 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:01 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:01 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:01 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:01 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:01 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:01 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:01 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:01 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:01 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:01 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:01 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:01 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:01 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:01 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:01 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:01 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:01 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:01 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:01 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:01 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:01 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:01 +0200
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:54:05 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (1.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (8.5ms)
Rendered shared/_header.html.erb (2.2ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 103ms (Views: 81.2ms | ActiveRecord: 1.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:05 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:05 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:05 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:05 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:05 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:05 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:05 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:05 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:05 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:05 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:05 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:05 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:05 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:05 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:05 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:05 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:05 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:05 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:05 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:05 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:05 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:05 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:05 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:05 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:05 +0200
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:54:11 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (1.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (5.8ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 98ms (Views: 15.9ms | ActiveRecord: 1.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:11 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:11 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:11 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:11 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:11 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:11 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:11 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:11 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:11 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:11 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:11 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:11 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:11 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:11 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:11 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:11 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:11 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:11 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:11 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:11 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:11 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:11 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:11 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:11 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:11 +0200
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:54:50 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (1.8ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (12.6ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 68ms (Views: 30.9ms | ActiveRecord: 2.1ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:50 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:50 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:50 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:50 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:50 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:50 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:50 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:50 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:50 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:50 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:50 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:50 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:50 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:50 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:50 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:50 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:50 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:50 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:50 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:50 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:50 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:50 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:50 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:50 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:50 +0200
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:54:57 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (4.5ms)
Rendered shared/_header.html.erb (2.1ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 51ms (Views: 18.0ms | ActiveRecord: 0.7ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:57 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:57 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:57 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:57 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:57 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:57 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:57 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:57 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:57 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:57 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:57 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:57 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:57 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:57 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:54:57 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:57 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:57 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:57 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:57 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:57 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:57 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:57 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:57 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:57 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:54:57 +0200
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:55:02 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (8.5ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 36ms (Views: 19.8ms | ActiveRecord: 0.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:03 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:03 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:03 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:03 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:03 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:03 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:03 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:03 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:03 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:03 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:03 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:03 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:03 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:03 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:03 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:03 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:03 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:03 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:03 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:03 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:03 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:03 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:03 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:03 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:03 +0200
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:55:08 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (3.8ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 39ms (Views: 15.5ms | ActiveRecord: 0.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:08 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:08 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:08 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:08 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:08 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:08 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:08 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:08 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:08 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:08 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:08 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:08 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:08 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:08 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:08 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:08 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:08 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:08 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:08 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:08 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:08 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:08 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:08 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:08 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:08 +0200
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:55:19 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/users_helper.rb:3: syntax error, unexpected tSYMBEG
def render_avatar(user, :width)
^
/Users/rbarisic/rails_projects/game_codes/app/helpers/users_helper.rb:10: syntax error, unexpected keyword_end, expecting end-of-input):
app/controllers/application_controller.rb:1:in `<top (required)>' app/controllers/users_controller.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.9ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:55:23 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (2.0ms)
Completed 500 Internal Server Error in 38ms
ActionView::Template::Error (wrong number of arguments (1 for 2)):
14: <li> 15: <div class="pure-g"> 16: <div class="pure-u-1-3"> 17: <%= render_avatar(user) %> 18: </div> 19: <div class="pure-u-2-3"> 20: <%= link_to user.nickname, user %> app/helpers/users_helper.rb:3:in `render_avatar' app/views/users/index.html.erb:17:in `block in _app_views_users_index_html_erb___4113026242361065237_70134199197320' app/views/users/index.html.erb:13:in `_app_views_users_index_html_erb___4113026242361065237_70134199197320' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.1ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:55:26 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/users_helper.rb:3: syntax error, unexpected {
def render_avatar(user, {width})
^
/Users/rbarisic/rails_projects/game_codes/app/helpers/users_helper.rb:10: syntax error, unexpected keyword_end, expecting end-of-input):
app/controllers/application_controller.rb:1:in `<top (required)>' app/controllers/users_controller.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.3ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:55:29 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/users_helper.rb:3: syntax error, unexpected {
def render_avatar(user, {"width"})
^
/Users/rbarisic/rails_projects/game_codes/app/helpers/users_helper.rb:3: syntax error, unexpected '}', expecting =>
def render_avatar(user, {"width"})
^
/Users/rbarisic/rails_projects/game_codes/app/helpers/users_helper.rb:10: syntax error, unexpected keyword_end, expecting end-of-input):
app/controllers/application_controller.rb:1:in `<top (required)>' app/controllers/users_controller.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.3ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:55:32 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/users_helper.rb:3: syntax error, unexpected {
def render_avatar(user, {width})
^
/Users/rbarisic/rails_projects/game_codes/app/helpers/users_helper.rb:10: syntax error, unexpected keyword_end, expecting end-of-input):
app/controllers/application_controller.rb:1:in `<top (required)>' app/controllers/users_controller.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.0ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:55:35 +0200
SyntaxError (/Users/rbarisic/rails_projects/game_codes/app/helpers/users_helper.rb:3: syntax error, unexpected {
def render_avatar(user, {width: 20})
^
/Users/rbarisic/rails_projects/game_codes/app/helpers/users_helper.rb:3: syntax error, unexpected ')', expecting keyword_end /Users/rbarisic/rails_projects/game_codes/app/helpers/users_helper.rb:10: syntax error, unexpected keyword_end, expecting end-of-input):
app/controllers/application_controller.rb:1:in `<top (required)>' app/controllers/users_controller.rb:1:in `<top (required)>' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.6ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:55:44 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (5.6ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 41ms (Views: 15.9ms | ActiveRecord: 0.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:44 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:44 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:44 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:44 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:44 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:44 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:44 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:44 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:44 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:44 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:44 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:44 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:44 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:44 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:55:44 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:44 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:45 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:45 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:45 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:45 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:45 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:45 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:45 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:45 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:55:45 +0200
Started GET “/assets/fontawesome-webfont.woff2?v=4.3.0” for 127.0.0.1 at 2015-09-10 14:55:45 +0200
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:56:06 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (4.4ms)
Rendered shared/_header.html.erb (3.6ms)
Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 37ms (Views: 19.5ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:07 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:07 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:07 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:07 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:07 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:07 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:07 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:07 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:07 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:07 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:07 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:07 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:07 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:07 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:07 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:07 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:07 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:07 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:07 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:07 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:07 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:07 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:07 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:07 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:07 +0200
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:56:36 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (1.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (7.0ms)
Rendered shared/_header.html.erb (1.4ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 124ms (Views: 75.0ms | ActiveRecord: 2.0ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:36 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:36 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:36 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:36 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:36 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:36 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:36 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:36 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:36 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:36 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:36 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:36 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:36 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:36 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:36 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:36 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:36 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:36 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:36 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:36 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:36 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:36 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:36 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:36 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:36 +0200
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:56:40 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (3.9ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 20ms (Views: 14.0ms | ActiveRecord: 0.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:40 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:40 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:40 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:40 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:40 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:40 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:40 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:40 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:40 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:40 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:40 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:40 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:40 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:40 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:40 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:40 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:40 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:40 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:40 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:40 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:41 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:41 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:41 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:41 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:41 +0200
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:56:46 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (2.7ms)
Completed 500 Internal Server Error in 6ms
ActionView::Template::Error (no implicit conversion of Hash into String):
14: <li> 15: <div class="pure-g"> 16: <div class="pure-u-1-3"> 17: <%= render_avatar(user, width: '50%') %> 18: </div> 19: <div class="pure-u-2-3"> 20: <%= link_to user.nickname, user %> app/helpers/users_helper.rb:5:in `+' app/helpers/users_helper.rb:5:in `render_avatar' app/views/users/index.html.erb:17:in `block in _app_views_users_index_html_erb___4113026242361065237_70134195936700' app/views/users/index.html.erb:13:in `_app_views_users_index_html_erb___4113026242361065237_70134195936700' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.5ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:56:56 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (1.6ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (10.7ms)
Rendered shared/_header.html.erb (1.7ms)
Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 35ms (Views: 30.6ms | ActiveRecord: 1.8ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:56 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:56 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:56 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:56 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:56 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:56 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:56 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:56 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:56 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:56 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:56 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:56 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:56 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:56 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:56:56 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:56 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:56 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:56 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:56 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:56 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:56 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:56 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:56 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:56 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:56:56 +0200
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:57:01 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (88.2ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 103ms (Views: 100.6ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:01 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:01 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:01 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:01 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:01 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:01 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:01 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:01 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:01 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:01 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:01 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:01 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:01 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:01 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:01 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:01 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:01 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:01 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:01 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:01 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:01 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:01 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:01 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:01 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:01 +0200
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:57:06 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (3.6ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:06 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:06 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:06 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:06 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:06 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:06 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:06 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:06 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:06 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:06 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:06 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:06 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:06 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:06 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:06 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:06 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:06 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:06 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:06 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:06 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:06 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:06 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:06 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:06 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:06 +0200
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:57:09 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (4.2ms)
Rendered shared/_header.html.erb (3.7ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 27ms (Views: 24.4ms | ActiveRecord: 0.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:09 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:09 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:09 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:09 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:09 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:09 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:09 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:09 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:09 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:09 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:09 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:09 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:09 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:09 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:09 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:09 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:09 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:09 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:09 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:09 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:09 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:09 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:09 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:09 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:09 +0200
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:57:46 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (4.6ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 32ms (Views: 13.7ms | ActiveRecord: 0.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:46 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:46 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:46 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:46 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:46 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:46 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:46 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:46 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:46 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:46 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:46 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:46 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:46 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:46 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:57:46 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:46 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:46 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:46 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:46 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:46 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:46 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:46 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:46 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:46 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:57:46 +0200
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:58:00 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (7.0ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 34ms (Views: 17.0ms | ActiveRecord: 0.6ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:00 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:00 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:00 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:00 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:00 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:00 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:00 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:00 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:00 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:01 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:01 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:01 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:01 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:01 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:01 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:01 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:01 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:01 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:01 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:01 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:01 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:01 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:01 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:01 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:01 +0200
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:58:16 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (5.5ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 36ms (Views: 15.7ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:16 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:16 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:16 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:16 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:16 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:16 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:16 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:16 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:16 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:16 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:16 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:16 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:16 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:16 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:16 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:16 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:16 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:16 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:16 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:16 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:16 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:16 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:16 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:16 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:16 +0200
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:58:29 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (4.9ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 107ms (Views: 79.4ms | ActiveRecord: 0.9ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:29 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:29 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:29 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:29 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:29 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:29 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:29 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:29 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:29 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:29 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:29 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:29 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:29 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:29 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:29 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:29 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:29 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:29 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:29 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:29 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:29 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:29 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:29 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:29 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:29 +0200
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:58:33 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (3.8ms)
Rendered shared/_header.html.erb (1.4ms)
Rendered shared/_footer.html.erb (3.8ms)
Completed 200 OK in 26ms (Views: 23.0ms | ActiveRecord: 0.4ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:33 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:33 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:33 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:33 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:33 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:33 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:33 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:33 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:33 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:33 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:33 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:33 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:33 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:33 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 14:58:33 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:33 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:33 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:33 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:33 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:33 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:33 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:33 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:33 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:33 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 14:58:33 +0200
Started GET “/users?page=2” for 127.0.0.1 at 2015-09-10 14:58:37 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"2"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 25[0m
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users"
Rendered users/index.html.erb within layouts/application (8.3ms)
Rendered shared/_header.html.erb (2.9ms)
Rendered shared/_footer.html.erb (2.1ms)
Completed 200 OK in 35ms (Views: 32.5ms | ActiveRecord: 0.6ms)
Started GET “/users?page=1” for 127.0.0.1 at 2015-09-10 14:58:38 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"1"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
Rendered users/index.html.erb within layouts/application (6.1ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 19ms (Views: 16.1ms | ActiveRecord: 0.6ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:58:40 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (2.9ms)
Rendered shared/_header.html.erb (1.0ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 15ms (Views: 12.2ms | ActiveRecord: 0.4ms)
Started GET “/users?page=2” for 127.0.0.1 at 2015-09-10 14:58:42 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"2"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 25[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
Rendered users/index.html.erb within layouts/application (6.1ms)
Rendered shared/_header.html.erb (2.6ms)
Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 108ms (Views: 103.3ms | ActiveRecord: 0.7ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:58:43 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 50
Rendered users/index.html.erb within layouts/application (2.9ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 16ms (Views: 13.1ms | ActiveRecord: 0.4ms)
Started GET “/users?page=1” for 127.0.0.1 at 2015-09-10 14:58:45 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"1"}
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
Rendered users/index.html.erb within layouts/application (12.0ms)
Rendered shared/_header.html.erb (2.4ms)
Rendered shared/_footer.html.erb (1.2ms)
Completed 200 OK in 41ms (Views: 36.7ms | ActiveRecord: 0.8ms)
Started GET “/users?page=2” for 127.0.0.1 at 2015-09-10 14:58:46 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"2"}
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 25[0m
[1m[35m (0.7ms)[0m SELECT COUNT(*) FROM "users"
Rendered users/index.html.erb within layouts/application (14.2ms)
Rendered shared/_header.html.erb (2.0ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 36ms (Views: 32.5ms | ActiveRecord: 1.7ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 14:58:48 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 50
Rendered users/index.html.erb within layouts/application (96.4ms)
Rendered shared/_header.html.erb (1.1ms)
Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 110ms (Views: 107.8ms | ActiveRecord: 0.6ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 15:02:36 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 50
Rendered users/index.html.erb within layouts/application (7.4ms)
Rendered shared/_header.html.erb (1.7ms)
Rendered shared/_footer.html.erb (1.0ms)
Completed 200 OK in 107ms (Views: 89.4ms | ActiveRecord: 0.5ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 15:02:36 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 15:02:36 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 15:02:36 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 15:02:36 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 15:02:36 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 15:02:36 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 15:02:36 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 15:02:36 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 15:02:36 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 15:02:36 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 15:02:36 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 15:02:36 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 15:02:36 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 15:02:36 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 15:02:36 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 15:02:36 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 15:02:36 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 15:02:36 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 15:02:36 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 15:02:36 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 15:02:36 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 15:02:36 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 15:02:36 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 15:02:36 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 15:02:36 +0200
Started GET “/assets/default-avatar.jpg” for 127.0.0.1 at 2015-09-10 15:02:36 +0200
Started GET “/users?page=1” for 127.0.0.1 at 2015-09-10 15:02:39 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"1"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
Rendered users/index.html.erb within layouts/application (10.5ms)
Rendered shared/_header.html.erb (1.8ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 25ms (Views: 22.3ms | ActiveRecord: 0.8ms)
Started GET “/users?page=2” for 127.0.0.1 at 2015-09-10 15:02:42 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"2"}
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 25[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
Rendered users/index.html.erb within layouts/application (11.3ms)
Rendered shared/_header.html.erb (1.3ms)
Rendered shared/_footer.html.erb (0.6ms)
Completed 200 OK in 31ms (Views: 26.1ms | ActiveRecord: 0.8ms)
Started GET “/users?page=1” for 127.0.0.1 at 2015-09-10 15:02:44 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"1"}
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
Rendered users/index.html.erb within layouts/application (113.6ms)
Rendered shared/_header.html.erb (1.4ms)
Rendered shared/_footer.html.erb (0.3ms)
Completed 200 OK in 131ms (Views: 124.5ms | ActiveRecord: 1.0ms)
Started GET “/users?page=3” for 127.0.0.1 at 2015-09-10 15:02:47 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"3"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 50[0m
Rendered users/index.html.erb within layouts/application (4.4ms)
Rendered shared/_header.html.erb (1.2ms)
Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 19ms (Views: 16.1ms | ActiveRecord: 0.4ms)
Started GET “/users?page=2” for 127.0.0.1 at 2015-09-10 15:03:07 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"2"}
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 25 OFFSET 25[0m
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
Rendered users/index.html.erb within layouts/application (8.6ms)
Rendered shared/_header.html.erb (3.9ms)
Rendered shared/_footer.html.erb (1.5ms)
Completed 200 OK in 36ms (Views: 33.6ms | ActiveRecord: 0.6ms)
Started GET “/users?page=1” for 127.0.0.1 at 2015-09-10 15:03:10 +0200 Processing by UsersController#index as HTML
Parameters: {"page"=>"1"}
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m
[1m[35mUser Load (1.3ms)[0m SELECT "users".* FROM "users" LIMIT 25 OFFSET 0
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
Rendered users/index.html.erb within layouts/application (21.0ms)
Rendered shared/_header.html.erb (1.9ms)
Rendered shared/_footer.html.erb (86.2ms)
Completed 200 OK in 125ms (Views: 121.4ms | ActiveRecord: 1.7ms)
Started GET “/games” for 127.0.0.1 at 2015-09-10 15:03:12 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.1ms) [1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1 [1m[36mGame Load (0.4ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "games" [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 2]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 5]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 7]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 8]] Rendered games/_index_gallery.html.erb (39.1ms) Rendered games/index.html.erb within layouts/application (42.5ms) Rendered shared/_header.html.erb (1.9ms) Rendered shared/_footer.html.erb (0.9ms)
Completed 200 OK in 79ms (Views: 59.5ms | ActiveRecord: 3.7ms)
Started GET “/” for 127.0.0.1 at 2015-09-10 15:09:36 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (4.1ms) [1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (2.1ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (3.5ms) [1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (4.9ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___536453388460758653_70134198935080 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (26.0ms) Rendered welcome/index.html.erb within layouts/application (45.5ms) [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1 Rendered shared/_header.html.erb (2.6ms) Rendered shared/_splash.html.erb (0.1ms) Rendered shared/_footer.html.erb (0.4ms)
Completed 200 OK in 61ms (Views: 56.5ms | ActiveRecord: 3.9ms)
Started GET “/games” for 127.0.0.1 at 2015-09-10 15:09:37 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.0ms) [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1[0m [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" LIMIT 8 OFFSET 0 [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games"[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 5]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 6]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ? [["game_id", 7]] [1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."game_id" = ?[0m [["game_id", 8]] Rendered games/_index_gallery.html.erb (16.1ms) Rendered games/index.html.erb within layouts/application (19.6ms) Rendered shared/_header.html.erb (2.1ms) Rendered shared/_footer.html.erb (2.5ms)
Completed 200 OK in 92ms (Views: 88.4ms | ActiveRecord: 1.9ms)
Started DELETE “/users/sign_out” for 127.0.0.1 at 2015-09-10 15:13:01 +0200 Processing by Devise::SessionsController#destroy as HTML
Parameters: {"authenticity_token"=>"3DKf7iYp/LRpVmVbTJ0XKOpAB6IYvtFGRlJzrP2/Tz4="}
[1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
[1m[35m (0.1ms)[0m commit transaction
Redirected to localhost:3000/ Completed 302 Found in 24ms (ActiveRecord: 0.8ms)
Started GET “/” for 127.0.0.1 at 2015-09-10 15:13:01 +0200 Processing by WelcomeController#index as HTML
[1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games"[0m Rendered game_codes/_add_code_form.html.erb (15.6ms) [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5) Rendered widgets/_hot_games.html.erb (0.8ms) [1m[36mGame Load (0.2ms)[0m [1mSELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5[0m Rendered widgets/_newest_games.html.erb (4.5ms) [1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10 Rendered widgets/_newest_users.html.erb (66.7ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___536453388460758653_70134169285040 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" LIMIT 10[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 1]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 6]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 9]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 10]] Rendered widgets/_top_users.html.erb (23.1ms) Rendered welcome/index.html.erb within layouts/application (115.2ms) Rendered shared/_header.html.erb (4.0ms) Rendered shared/_splash.html.erb (0.3ms) Rendered shared/_footer.html.erb (0.5ms)
Completed 200 OK in 134ms (Views: 127.1ms | ActiveRecord: 3.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 15:13:01 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 15:13:01 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 15:13:01 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 15:13:01 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 15:13:01 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 15:13:01 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 15:13:01 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 15:13:01 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 15:13:01 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 15:13:01 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 15:13:01 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 15:13:01 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 15:13:01 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 15:13:01 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 15:13:01 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 15:13:01 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 15:13:01 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 15:13:01 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 15:13:01 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 15:13:01 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 15:13:01 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 15:13:01 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 15:13:01 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 15:13:01 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 15:13:01 +0200
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Migrating to AddImageFieldsToGame (20150910131707)
[1m[35m (0.1ms)[0m begin transaction
[1m[36m (0.6ms)[0m [1mCREATE TEMPORARY TABLE "agames" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime, "slug" varchar(255), "game_codes_id" integer, "creator" varchar(255), "cover_url" varchar(255), "company_url" varchar(255), "code_length" integer, "description" text, "coin_multiplier" integer DEFAULT 1) [0m
[1m[35m (0.1ms)[0m CREATE INDEX "tindex_agames_on_game_codes_id" ON "agames" ("game_codes_id")
[1m[36m (0.3ms)[0m [1mCREATE UNIQUE INDEX "tindex_agames_on_slug" ON "agames" ("slug")[0m
[1m[35m (0.1ms)[0m SELECT * FROM "games"
[1m[36m (0.1ms)[0m [1mINSERT INTO "agames" ("id","name","created_at","updated_at","slug","game_codes_id","creator","cover_url","company_url","code_length","description","coin_multiplier") VALUES (1, 'Spirols of Doom', '2015-06-20 14:46:53.058790', '2015-07-23 19:13:39.402404', 'spirols-of-doom', NULL, 'Ferry LLC', 'http://spielercheats.de/wp-content/uploads/2015/05/wrapper.jpg', 'http://www.mitchell.net', 10, 'Et corporis neque. Inventore accusamus laboriosam deserunt reprehenderit deleniti.', 1)[0m
[1m[35m (0.0ms)[0m INSERT INTO "agames" ("id","name","created_at","updated_at","slug","game_codes_id","creator","cover_url","company_url","code_length","description","coin_multiplier") VALUES (2, ' Swords of Master', '2015-06-20 14:46:53.064491', '2015-06-20 14:46:53.064491', 'swords-of-master', NULL, 'Bailey, Hayes and Hegmann', 'http://www.google.com', 'http://www.ondricka.name', 10, 'Quod est perspiciatis consequuntur placeat qui. Nostrum et consequatur mollitia sint enim. Rerum aut sequi cum. Blanditiis accusantium recusandae dolorem.', 1)
[1m[36m (0.0ms)[0m [1mINSERT INTO "agames" ("id","name","created_at","updated_at","slug","game_codes_id","creator","cover_url","company_url","code_length","description","coin_multiplier") VALUES (3, ' Fight of Fist', '2015-06-20 14:46:53.068474', '2015-06-20 14:46:53.068474', 'fight-of-fist', NULL, 'Romaguera, Lockman and Kling', 'http://www.google.com', 'http://www.erdmanschneider.net', 8, 'Veritatis harum suscipit molestiae aperiam odit. Saepe omnis velit rerum et aut. Ut nesciunt fugit. Aut debitis a non temporibus voluptate.', 1)[0m
[1m[35m (0.0ms)[0m INSERT INTO "agames" ("id","name","created_at","updated_at","slug","game_codes_id","creator","cover_url","company_url","code_length","description","coin_multiplier") VALUES (4, ' Anger of Dark', '2015-06-20 14:46:53.074066', '2015-06-20 14:46:53.074066', 'anger-of-dark', NULL, 'Miller, Harber and Jenkins', 'http://www.google.com', 'http://www.daniel.net', 12, 'Praesentium suscipit omnis quos sequi et. Aut nisi at quia.', 1)
[1m[36m (0.0ms)[0m [1mINSERT INTO "agames" ("id","name","created_at","updated_at","slug","game_codes_id","creator","cover_url","company_url","code_length","description","coin_multiplier") VALUES (5, ' Presence of Evil', '2015-06-20 14:46:53.078302', '2015-06-20 14:46:53.078302', 'presence-of-evil', NULL, 'Reilly, Wisozk and Herzog', 'http://www.google.com', 'http://www.becker.com', 9, 'Voluptatem vitae rerum. Aut esse et quod voluptatem et.', 1)[0m
[1m[35m (0.0ms)[0m INSERT INTO "agames" ("id","name","created_at","updated_at","slug","game_codes_id","creator","cover_url","company_url","code_length","description","coin_multiplier") VALUES (6, ' Absence of Darkness', '2015-06-20 14:46:53.084221', '2015-06-20 14:46:53.084221', 'absence-of-darkness', NULL, 'Lynch Inc', 'http://www.google.com', 'http://www.schmitt.net', 9, 'Perferendis recusandae minima soluta dicta ad aperiam. Aut ullam similique corporis vitae dolor sit. Officia mollitia et autem iste rerum aut. Aut iure nobis incidunt facere aliquid eius fuga.', 1)
[1m[36m (0.0ms)[0m [1mINSERT INTO "agames" ("id","name","created_at","updated_at","slug","game_codes_id","creator","cover_url","company_url","code_length","description","coin_multiplier") VALUES (7, ' Master of Legacy', '2015-06-20 14:46:53.089189', '2015-06-20 14:46:53.089189', 'master-of-legacy', NULL, 'Spencer, Bednar and Brown', 'http://www.google.com', 'http://www.boyer.com', 10, 'Tempora voluptatem asperiores. Voluptas quia corrupti. In voluptas provident et enim odit doloremque. Nulla et ullam animi omnis ut repellat.', 1)[0m
[1m[35m (0.0ms)[0m INSERT INTO "agames" ("id","name","created_at","updated_at","slug","game_codes_id","creator","cover_url","company_url","code_length","description","coin_multiplier") VALUES (8, ' Crime of War', '2015-06-20 14:46:53.094006', '2015-06-20 14:46:53.094006', 'crime-of-war', NULL, 'Legros LLC', 'http://www.google.com', 'http://www.kertzmannreilly.net', 9, 'Enim sint in et dolor. Minima qui in quia velit et. Quidem quibusdam voluptate voluptas.', 1)
[1m[36m (0.0ms)[0m [1mINSERT INTO "agames" ("id","name","created_at","updated_at","slug","game_codes_id","creator","cover_url","company_url","code_length","description","coin_multiplier") VALUES (9, ' Reason of Destiny', '2015-06-20 14:46:53.098632', '2015-06-20 14:46:53.098632', 'reason-of-destiny', NULL, 'Terry, Ledner and Cormier', 'http://www.google.com', 'http://www.dibbertzieme.name', 8, 'Aut autem consequatur rerum ut aut dolor ab. Quia labore voluptatum tempora est quia qui sed. Adipisci quis non velit.', 1)[0m
[1m[35m (0.0ms)[0m INSERT INTO "agames" ("id","name","created_at","updated_at","slug","game_codes_id","creator","cover_url","company_url","code_length","description","coin_multiplier") VALUES (10, ' Sphere of Fire', '2015-06-20 14:46:53.103865', '2015-06-20 14:46:53.103865', 'sphere-of-fire', NULL, 'Goodwin-Casper', 'http://www.google.com', 'http://www.ziemannarmstrong.org', 8, 'Exercitationem ad quidem molestiae porro delectus sit. Vitae omnis animi et fuga omnis incidunt rerum. Dolorum officiis est porro alias. Porro eveniet perferendis.', 1)
[1m[36m (0.0ms)[0m [1mINSERT INTO "agames" ("id","name","created_at","updated_at","slug","game_codes_id","creator","cover_url","company_url","code_length","description","coin_multiplier") VALUES (11, ' Weapon of Fate', '2015-06-20 14:46:53.108701', '2015-06-20 14:46:53.108701', 'weapon-of-fate', NULL, 'McGlynn-Harber', 'http://www.google.com', 'http://www.heidenreich.org', 11, 'Repellat voluptas culpa maiores voluptatem. Quam maxime distinctio. In et est corrupti molestias iste ut.', 1)[0m
[1m[35m (0.0ms)[0m INSERT INTO "agames" ("id","name","created_at","updated_at","slug","game_codes_id","creator","cover_url","company_url","code_length","description","coin_multiplier") VALUES (12, ' Melody of Wind', '2015-06-20 14:46:53.113167', '2015-06-20 14:46:53.113167', 'melody-of-wind', NULL, 'Anderson-Kris', 'http://www.google.com', 'http://www.hettinger.info', 10, 'Assumenda aperiam sunt tenetur nesciunt minus at. Optio beatae non aut culpa nobis qui et. Possimus fuga reiciendis dolorum voluptatem qui consequatur neque.', 1)
[1m[36m (0.0ms)[0m [1mINSERT INTO "agames" ("id","name","created_at","updated_at","slug","game_codes_id","creator","cover_url","company_url","code_length","description","coin_multiplier") VALUES (13, 'GO!! GO!! Hentai PaNIC?? //<Hack Slasher> Tenkaichi 3', '2015-06-25 19:13:37.687278', '2015-06-25 19:13:37.687278', 'go-go-hentai-panic-hack-slasher-tenkaichi-3', NULL, 'Fuji-Katsu ', 'https://p.dreamwidth.org/2ae07410a507/i.imgur.com/HGBJXpE.gif', 'http://www.fujikatsunohagiushu.co.jp', 4, 'GO!! GO!! Hentai PaNIC?? //<Hack Slasher> Tenkaichi 3 is the best game EVER!!!', 1)[0m
[1m[35m (0.3ms)[0m DROP TABLE "games"
[1m[36m (0.1ms)[0m [1mCREATE TABLE "games" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime, "slug" varchar(255), "game_codes_id" integer, "creator" varchar(255), "company_url" varchar(255), "code_length" integer, "description" text, "coin_multiplier" integer DEFAULT 1) [0m
[1m[35m (0.3ms)[0m CREATE UNIQUE INDEX "index_games_on_slug" ON "games" ("slug")
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_games_on_game_codes_id" ON "games" ("game_codes_id")[0m
[1m[35m (0.1ms)[0m SELECT * FROM "agames"
[1m[36m (0.1ms)[0m [1mINSERT INTO "games" ("id","name","created_at","updated_at","slug","game_codes_id","creator","company_url","code_length","description","coin_multiplier") VALUES (1, 'Spirols of Doom', '2015-06-20 14:46:53.058790', '2015-07-23 19:13:39.402404', 'spirols-of-doom', NULL, 'Ferry LLC', 'http://www.mitchell.net', 10, 'Et corporis neque. Inventore accusamus laboriosam deserunt reprehenderit deleniti.', 1)[0m
[1m[35m (0.1ms)[0m INSERT INTO "games" ("id","name","created_at","updated_at","slug","game_codes_id","creator","company_url","code_length","description","coin_multiplier") VALUES (2, ' Swords of Master', '2015-06-20 14:46:53.064491', '2015-06-20 14:46:53.064491', 'swords-of-master', NULL, 'Bailey, Hayes and Hegmann', 'http://www.ondricka.name', 10, 'Quod est perspiciatis consequuntur placeat qui. Nostrum et consequatur mollitia sint enim. Rerum aut sequi cum. Blanditiis accusantium recusandae dolorem.', 1)
[1m[36m (0.0ms)[0m [1mINSERT INTO "games" ("id","name","created_at","updated_at","slug","game_codes_id","creator","company_url","code_length","description","coin_multiplier") VALUES (3, ' Fight of Fist', '2015-06-20 14:46:53.068474', '2015-06-20 14:46:53.068474', 'fight-of-fist', NULL, 'Romaguera, Lockman and Kling', 'http://www.erdmanschneider.net', 8, 'Veritatis harum suscipit molestiae aperiam odit. Saepe omnis velit rerum et aut. Ut nesciunt fugit. Aut debitis a non temporibus voluptate.', 1)[0m
[1m[35m (0.0ms)[0m INSERT INTO "games" ("id","name","created_at","updated_at","slug","game_codes_id","creator","company_url","code_length","description","coin_multiplier") VALUES (4, ' Anger of Dark', '2015-06-20 14:46:53.074066', '2015-06-20 14:46:53.074066', 'anger-of-dark', NULL, 'Miller, Harber and Jenkins', 'http://www.daniel.net', 12, 'Praesentium suscipit omnis quos sequi et. Aut nisi at quia.', 1)
[1m[36m (0.1ms)[0m [1mINSERT INTO "games" ("id","name","created_at","updated_at","slug","game_codes_id","creator","company_url","code_length","description","coin_multiplier") VALUES (5, ' Presence of Evil', '2015-06-20 14:46:53.078302', '2015-06-20 14:46:53.078302', 'presence-of-evil', NULL, 'Reilly, Wisozk and Herzog', 'http://www.becker.com', 9, 'Voluptatem vitae rerum. Aut esse et quod voluptatem et.', 1)[0m
[1m[35m (0.1ms)[0m INSERT INTO "games" ("id","name","created_at","updated_at","slug","game_codes_id","creator","company_url","code_length","description","coin_multiplier") VALUES (6, ' Absence of Darkness', '2015-06-20 14:46:53.084221', '2015-06-20 14:46:53.084221', 'absence-of-darkness', NULL, 'Lynch Inc', 'http://www.schmitt.net', 9, 'Perferendis recusandae minima soluta dicta ad aperiam. Aut ullam similique corporis vitae dolor sit. Officia mollitia et autem iste rerum aut. Aut iure nobis incidunt facere aliquid eius fuga.', 1)
[1m[36m (0.1ms)[0m [1mINSERT INTO "games" ("id","name","created_at","updated_at","slug","game_codes_id","creator","company_url","code_length","description","coin_multiplier") VALUES (7, ' Master of Legacy', '2015-06-20 14:46:53.089189', '2015-06-20 14:46:53.089189', 'master-of-legacy', NULL, 'Spencer, Bednar and Brown', 'http://www.boyer.com', 10, 'Tempora voluptatem asperiores. Voluptas quia corrupti. In voluptas provident et enim odit doloremque. Nulla et ullam animi omnis ut repellat.', 1)[0m
[1m[35m (0.0ms)[0m INSERT INTO "games" ("id","name","created_at","updated_at","slug","game_codes_id","creator","company_url","code_length","description","coin_multiplier") VALUES (8, ' Crime of War', '2015-06-20 14:46:53.094006', '2015-06-20 14:46:53.094006', 'crime-of-war', NULL, 'Legros LLC', 'http://www.kertzmannreilly.net', 9, 'Enim sint in et dolor. Minima qui in quia velit et. Quidem quibusdam voluptate voluptas.', 1)
[1m[36m (0.0ms)[0m [1mINSERT INTO "games" ("id","name","created_at","updated_at","slug","game_codes_id","creator","company_url","code_length","description","coin_multiplier") VALUES (9, ' Reason of Destiny', '2015-06-20 14:46:53.098632', '2015-06-20 14:46:53.098632', 'reason-of-destiny', NULL, 'Terry, Ledner and Cormier', 'http://www.dibbertzieme.name', 8, 'Aut autem consequatur rerum ut aut dolor ab. Quia labore voluptatum tempora est quia qui sed. Adipisci quis non velit.', 1)[0m
[1m[35m (0.0ms)[0m INSERT INTO "games" ("id","name","created_at","updated_at","slug","game_codes_id","creator","company_url","code_length","description","coin_multiplier") VALUES (10, ' Sphere of Fire', '2015-06-20 14:46:53.103865', '2015-06-20 14:46:53.103865', 'sphere-of-fire', NULL, 'Goodwin-Casper', 'http://www.ziemannarmstrong.org', 8, 'Exercitationem ad quidem molestiae porro delectus sit. Vitae omnis animi et fuga omnis incidunt rerum. Dolorum officiis est porro alias. Porro eveniet perferendis.', 1)
[1m[36m (0.0ms)[0m [1mINSERT INTO "games" ("id","name","created_at","updated_at","slug","game_codes_id","creator","company_url","code_length","description","coin_multiplier") VALUES (11, ' Weapon of Fate', '2015-06-20 14:46:53.108701', '2015-06-20 14:46:53.108701', 'weapon-of-fate', NULL, 'McGlynn-Harber', 'http://www.heidenreich.org', 11, 'Repellat voluptas culpa maiores voluptatem. Quam maxime distinctio. In et est corrupti molestias iste ut.', 1)[0m
[1m[35m (0.0ms)[0m INSERT INTO "games" ("id","name","created_at","updated_at","slug","game_codes_id","creator","company_url","code_length","description","coin_multiplier") VALUES (12, ' Melody of Wind', '2015-06-20 14:46:53.113167', '2015-06-20 14:46:53.113167', 'melody-of-wind', NULL, 'Anderson-Kris', 'http://www.hettinger.info', 10, 'Assumenda aperiam sunt tenetur nesciunt minus at. Optio beatae non aut culpa nobis qui et. Possimus fuga reiciendis dolorum voluptatem qui consequatur neque.', 1)
[1m[36m (0.0ms)[0m [1mINSERT INTO "games" ("id","name","created_at","updated_at","slug","game_codes_id","creator","company_url","code_length","description","coin_multiplier") VALUES (13, 'GO!! GO!! Hentai PaNIC?? //<Hack Slasher> Tenkaichi 3', '2015-06-25 19:13:37.687278', '2015-06-25 19:13:37.687278', 'go-go-hentai-panic-hack-slasher-tenkaichi-3', NULL, 'Fuji-Katsu ', 'http://www.fujikatsunohagiushu.co.jp', 4, 'GO!! GO!! Hentai PaNIC?? //<Hack Slasher> Tenkaichi 3 is the best game EVER!!!', 1)[0m
[1m[35m (0.1ms)[0m DROP TABLE "agames"
[1m[36m (0.3ms)[0m [1mALTER TABLE "games" ADD "cover" varchar(255)[0m
[1m[35m (0.2ms)[0m ALTER TABLE "games" ADD "cover_content_type" varchar(255)
[1m[36m (0.1ms)[0m [1mALTER TABLE "games" ADD "company_image" varchar(255)[0m
[1m[35m (0.1ms)[0m ALTER TABLE "games" ADD "company_image_content_type" varchar(255)
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150910131707"]]
[1m[35m (1.1ms)[0m commit transaction
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Started GET “/” for 127.0.0.1 at 2015-09-10 15:17:49 +0200
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by WelcomeController#index as HTML
[1m[35mGame Load (0.3ms)[0m SELECT "games".* FROM "games" Rendered game_codes/_add_code_form.html.erb (84.9ms) [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "games" WHERE (coin_multiplier > 1.5)[0m Rendered widgets/_hot_games.html.erb (1.6ms) [1m[35mGame Load (0.2ms)[0m SELECT "games".* FROM "games" ORDER BY "games"."id" DESC LIMIT 5 Rendered widgets/_newest_games.html.erb (8.4ms) [1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 10[0m Rendered widgets/_newest_users.html.erb (22.0ms)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call to_a (e.g. `Post.where(published: true).to_a`). (called from block in _app_views_widgets__top_users_html_erb___3894848395335876567_70236264019500 at /Users/rbarisic/rails_projects/game_codes/app/views/widgets/_top_users.html.erb:2)
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" LIMIT 10 [1m[36m (2.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 2]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 3]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 4]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 5]] [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 7]] [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 8]] [1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 1]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 6]] [1m[36mCACHE (0.1ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 8]] [1m[35mCACHE (0.1ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 7]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 9]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 5]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 4]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 3]] [1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ?[0m [["user_id", 2]] [1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "game_codes" WHERE "game_codes"."user_id" = ? [["user_id", 10]] Rendered widgets/_top_users.html.erb (52.9ms) Rendered welcome/index.html.erb within layouts/application (177.7ms) Rendered shared/_header.html.erb (13.4ms) Rendered shared/_splash.html.erb (2.1ms) Rendered shared/_footer.html.erb (1.2ms)
Completed 200 OK in 482ms (Views: 443.6ms | ActiveRecord: 6.3ms)
Started GET “/assets/variables.css?body=1” for 127.0.0.1 at 2015-09-10 15:17:49 +0200
Started GET “/assets/font-awesome.css?body=1” for 127.0.0.1 at 2015-09-10 15:17:49 +0200
Started GET “/assets/purecss.css?body=1” for 127.0.0.1 at 2015-09-10 15:17:49 +0200
Started GET “/assets/application.css?body=1” for 127.0.0.1 at 2015-09-10 15:17:49 +0200
Started GET “/assets/base-layout.css?body=1” for 127.0.0.1 at 2015-09-10 15:17:49 +0200
Started GET “/assets/custom.css?body=1” for 127.0.0.1 at 2015-09-10 15:17:49 +0200
Started GET “/assets/game_codes.css?body=1” for 127.0.0.1 at 2015-09-10 15:17:49 +0200
Started GET “/assets/game_requests.css?body=1” for 127.0.0.1 at 2015-09-10 15:17:50 +0200
Started GET “/assets/games.css?body=1” for 127.0.0.1 at 2015-09-10 15:17:50 +0200
Started GET “/assets/header.css?body=1” for 127.0.0.1 at 2015-09-10 15:17:50 +0200
Started GET “/assets/layout-2.css?body=1” for 127.0.0.1 at 2015-09-10 15:17:50 +0200
Started GET “/assets/pure-additions.css?body=1” for 127.0.0.1 at 2015-09-10 15:17:50 +0200
Started GET “/assets/users.css?body=1” for 127.0.0.1 at 2015-09-10 15:17:50 +0200
Started GET “/assets/welcome.css?body=1” for 127.0.0.1 at 2015-09-10 15:17:50 +0200
Started GET “/assets/xrl-base.css?body=1” for 127.0.0.1 at 2015-09-10 15:17:50 +0200
Started GET “/assets/jquery.js?body=1” for 127.0.0.1 at 2015-09-10 15:17:50 +0200
Started GET “/assets/jquery_ujs.js?body=1” for 127.0.0.1 at 2015-09-10 15:17:50 +0200
Started GET “/assets/turbolinks.js?body=1” for 127.0.0.1 at 2015-09-10 15:17:50 +0200
Started GET “/assets/game_codes.js?body=1” for 127.0.0.1 at 2015-09-10 15:17:50 +0200
Started GET “/assets/game_requests.js?body=1” for 127.0.0.1 at 2015-09-10 15:17:50 +0200
Started GET “/assets/games.js?body=1” for 127.0.0.1 at 2015-09-10 15:17:50 +0200
Started GET “/assets/toolbelt.js?body=1” for 127.0.0.1 at 2015-09-10 15:17:50 +0200
Started GET “/assets/users.js?body=1” for 127.0.0.1 at 2015-09-10 15:17:50 +0200
Started GET “/assets/welcome.js?body=1” for 127.0.0.1 at 2015-09-10 15:17:50 +0200
Started GET “/assets/application.js?body=1” for 127.0.0.1 at 2015-09-10 15:17:50 +0200
Started GET “/games” for 127.0.0.1 at 2015-09-10 15:17:52 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (1.1ms) [1m[36mGame Load (0.5ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "games" Rendered games/_index_gallery.html.erb (8.4ms) Rendered games/index.html.erb within layouts/application (19.5ms)
Completed 500 Internal Server Error in 25ms
ActionView::Template::Error (undefined method `cover_url' for #<Game:0x007fc24f3956e8>):
15: <%= link_to game, class: 'block-link' do %> 16: <div class="window distanced noborder"> 17: <div class="content nopadding"> 18: <div class="game-container", style="background-image: url(<%= game.cover_url ||= 'default-cover.jpg'%>)"> 19: <div class="header"> 20: <h1><%= game.name %></h1> 21: <span class="codes">Total codes: <%= game.game_codes.count %></span> app/views/games/_index_gallery.html.erb:18:in `block (2 levels) in _app_views_games__index_gallery_html_erb___2050656728356566185_70236264642200' app/views/games/_index_gallery.html.erb:15:in `block in _app_views_games__index_gallery_html_erb___2050656728356566185_70236264642200' app/views/games/_index_gallery.html.erb:13:in `_app_views_games__index_gallery_html_erb___2050656728356566185_70236264642200' app/views/games/index.html.erb:14:in `_app_views_games_index_html_erb___407332363076563691_70236264430140' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.6ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.2ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (25.2ms)
Started GET “/games” for 127.0.0.1 at 2015-09-10 15:17:52 +0200 Processing by GamesController#index as HTML
Rendered shared/_gallery_selector.html.erb (0.5ms) [1m[36mGame Load (0.3ms)[0m [1mSELECT "games".* FROM "games" LIMIT 8 OFFSET 0[0m [1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "games" Rendered games/_index_gallery.html.erb (5.6ms) Rendered games/index.html.erb within layouts/application (10.0ms)
Completed 500 Internal Server Error in 17ms
ActionView::Template::Error (undefined method `cover_url' for #<Game:0x007fc24f717398>):
15: <%= link_to game, class: 'block-link' do %> 16: <div class="window distanced noborder"> 17: <div class="content nopadding"> 18: <div class="game-container", style="background-image: url(<%= game.cover_url ||= 'default-cover.jpg'%>)"> 19: <div class="header"> 20: <h1><%= game.name %></h1> 21: <span class="codes">Total codes: <%= game.game_codes.count %></span> app/views/games/_index_gallery.html.erb:18:in `block (2 levels) in _app_views_games__index_gallery_html_erb___2050656728356566185_70236266521300' app/views/games/_index_gallery.html.erb:15:in `block in _app_views_games__index_gallery_html_erb___2050656728356566185_70236266521300' app/views/games/_index_gallery.html.erb:13:in `_app_views_games__index_gallery_html_erb___2050656728356566185_70236266521300' app/views/games/index.html.erb:14:in `_app_views_games_index_html_erb___407332363076563691_70236266412820' Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.8ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms) Rendered /Library/Ruby/Gems/2.0.0/gems/actionpack-4.0.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (16.6ms)